i m getting this bug.. and i still cant understand why this happening..??
here is my php code
$query1 = "call new_user('$cardDigits','$cardNo','$amount','$traiff','','','','','$creator',@_lastname,'$customer','$firstName','$email','0','0')";
$result1 = mysql_query($query1) or die('query_error'.''.mysql_error());
$lastname = mysql_fetch_row($result1);
// Generate New User
$query2 = "genrate_user('$lastname[0] ','$creator')";
echo $query2;
$result2 = mysql_query($query2) or die('query_error1'.''.mysql_error());
Procedures are working fine..!!!
1st Procedure generate the $lastname
which is the input parameter of second Procedure..!!!!!
when i print or echo the 2nd procedure.. its run fine at mysql.. but through php its throughing error Commands out of sync; you can't run this command now
Help me guys..!!!