• Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in HHow to make RESTful API for existing website in PHP

    Hope this will help you .. https://www.leaseweb.com/labs/2015/10/creating-a-simple-rest-api-in-php/ http://blog.ijasoneverett.com/2013/02/rest-api-a-simple-php-tutorial/
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Uploading Image as JSON

    Hi All, I am using php to create a Webservice API calls. I am checking all the service calls in Chrome's Postman and sending the data in JSON format. I …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Jquery Image upload plugin like face book profile picture upload

    Hai Everyone.. Could someone please tell me that is there any jquery plugin to upload an image with editing functionality like resize,drag position as in shown Facebook profile picture upload?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Jquery Image upload plugin like face book profile picture upload

    Hai Everyone.. Could someone please tell me that is there any jquery plugin to upload an image with editing functionality like resize,drag position as in shown Facebook profile picture upload?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Jquery Image upload plugin like face book profile picture upload

    Hai Everyone.. Could someone please tell me that is there any jquery plugin to upload an image with editing functionality like resize,drag position as in shown Facebook profile picture upload?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Jquery Image upload plugin like face book profile picture upload

    Hai Everyone.. Could someone please tell me that is there any jquery plugin to upload an image with editing functionality like resize,drag position as in shown Facebook profile picture upload?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Jquery date picker setting

    Hi.. I setting start date and end date in my php page using javascript with following options. Start date options mindate-today maxdate-end date(after selecting end date) End date options min …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Jquery date picker setting

    Hi.. I setting start date and end date in my php page using javascript with following options. Start date options mindate-today maxdate-end date(after selecting end date) End date options min …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in How to set different stroke color for routes in Google map

    Thanks for the reply. Please tell me how I can create multiple displays on my sample code?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created How to set different stroke color for routes in Google map

    Hi.. I am using Google map to show the route path between the longitude and latitude points. Here the default stroke color of the route path is blue. I want …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in How to reset multiple file input field using jquery

    If we select unallowed file type of more than one file it won't works
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created How to reset multiple file input field using jquery

    Hi.. I want to reset the multiple file input field. Actually my file input field is an array. I used the following code and it works if the input field …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Uploading Files in PHP using Uploadify is not working

    I am using uploadify to upload images in php. After uploading the files, showing the progress bar as completed but the uploads folder is showing as empty. I have downloaded …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Marked Solved Status for Issues while submitting multiple check box array

    Hi , I am using following script to get the values of the language details. <FORM action="final.php" method="post"> <div align="center"> <table width="434" border="0"> <tr> <td>Languages Known</td> <td>Speak</td> <td>Read</td> <td>Write</td> <td>Delete</td> …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Issues while submitting multiple check box array

    Thank u very much. Now its working..
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Issues while submitting multiple check box array

    Hi , I am using following script to get the values of the language details. <FORM action="final.php" method="post"> <div align="center"> <table width="434" border="0"> <tr> <td>Languages Known</td> <td>Speak</td> <td>Read</td> <td>Write</td> <td>Delete</td> …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Issues while submitting multiple check box array

    Hi , I am using following script to get the values of the language details. <FORM action="final.php" method="post"> <div align="center"> <table width="434" border="0"> <tr> <td>Languages Known</td> <td>Speak</td> <td>Read</td> <td>Write</td> <td>Delete</td> …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Codeigniter custom validation issue

    Hi I have added a custom form validation in codeigniter. The callback function returns true/false & the value of validating field. // JavaScript Document class Test extends CI_Controller { /*custom …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Marked Solved Status for Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Marked Solved Status for Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Revoked Solved Status for Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Revoked Solved Status for Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Marked Solved Status for Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Calling MYSQL stored procedures with OUT parameters

    Thank you very much I have changed my script as <?php include("dbcon.php"); $countryname="india"; $rs1 = mysql_query( "CALL countCountry('$countryname', @totalcount)" ); //$rs = mysql_query( 'SELECT @totalcount as totalcount' ); $rs = …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Calling MYSQL stored procedures with OUT parameters

    Getting NULL values like Array ( [0] => [@totalcount] => )
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Calling MYSQL stored procedures with OUT parameters

    Sorry ,its for debugging purpose I fetched twice. I changed my script as follows <?php include("dbcon.php"); $countryname="india"; $rs1 = mysql_query( 'CALL countCountry($countryname,@totalcount)' ); //$rs = mysql_query( 'SELECT @totalcount as totalcount' …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Calling MYSQL stored procedures with OUT parameters

    Hi.. I want to call mysql Stored procedure with OUT parameter. Its worked in phpamyadmin But in php it returning empty result. I have used the following php script. Can …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Assigning Smarty array to Javascript array

    Hi I want to assign a smarty array to Javascript array I used the following code <script type="text/javascript"> var arr = {/literal}{$a.ins_status|@json_encode}{literal}; alert(arr); </script> But the arrray is showing as …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Finding id of an element which is located after another element

    Hi How to get the Id of an element after firing the event from another element which is located before first element. Actually I have dynamically created <select> and a …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited Finding id of an element which is located after another element

    Hi How to get the Id of an element after firing the event from another element which is located before first element. Actually I have dynamically created <select> and a …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Finding id of an element which is located after another element

    Hi How to get the Id of an element after firing the event from another element which is located before first element. Actually I have dynamically created <select> and a …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in How to do Load Testing with Mobile Apps

    We are working for android and iPhone app basically, so need to test the performance and load capabilities. We tried Jmeter using proxy server in android mobile, but getting error …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Opening a pop up and appending content

    Actually I want to do a print page. In which I want to place a logo(jpg file). This logo is visible in firefox ,but it is not visible in chrome.
  • Member Avatar for divyakrishnan
    divyakrishnan

    Edited How to do Load Testing with Mobile Apps

    Hi.... Anyone have the idea about Load Testing Tool for Mobile APPS?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created How to do Load Testing with Mobile Apps

    Hi.... Anyone have the idea about Load Testing Tool for Mobile APPS?
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Opening a pop up and appending content

    Hi.. I want to open an existing popup and append the content to the pop up. I have used the following code <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in how to retrieve child node usig php

    try this <?php $string = <<<XML <a> <b> <c>text</c> <c>stuff</c> </b> <d> <c>code</c> </d> </a> XML; $xml = new SimpleXMLElement($string); $xml->asXML()."<br>"; //echo "<c>".(string)$child."</c>"; foreach( $xml->children() AS $child ) { //run …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in changing color for each array

    Refer [Click Here](http://www.php.net//manual/en/function.sort.php) for array sorting . Use a for loop to iterate the array elements and create hexadecimal color value for display.
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in how to retrieve child node usig php

    Try this <?php $string = <<<XML <a> <b> <c>text</c> <c>stuff</c> </b> <d> <c>code</c> </d> </a> XML; $xml = new SimpleXMLElement($string); $xml->asXML()."<br>"; //echo "<c>".(string)$child."</c>"; foreach( $xml->children() AS $child ) { //run …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in PHP WITH JS validate Not work correctly :( !

    Checkout the form.php Page. Line no 20 should be if(document.frm.userNameTxt.value=='') Like that you have check for every if condition.It should be like document.formname.fieldname.value id attribute for all input fields are …
  • Member Avatar for divyakrishnan
    divyakrishnan

    Replied To a Post in Finding Width and Height of an image before uploading

    I tried following code function form_image1() { var uploadedFile = document.getElementById('f1'); var fileHeight = uploadedFile.files[0].height; alert("fileHeight="+fileHeight); } Its getting output as "undefined "
  • Member Avatar for divyakrishnan
    divyakrishnan

    Created Finding Width and Height of an image before uploading

    I want to get the width and height of an image before uploading using javascript. I used The code shown below. But its returning 0 value <!DOCTYPE html PUBLIC "-//W3C//DTD …

The End.