How to Pass multiple Variable using AJAX to PHP
File 1: All variable store into array. pass that array to php file
File2:
if($_REQUEST['q'])
{
$x=$_REQUEST['q'];
$y=explode(',',$x);
}
{
$x=$_REQUEST['q'];
$y=explode(',',$x);
}
// content array receive into x as an string. Now convert x string into y array
Comments
Post a Comment