Hi,
I am a beginner in php mysql... I want to pass null values to integer from PHP file to mysql stored procedure.
eg:
$name = "John";
$age = $_POST; // Which is a null value..
and i called the procedure like CALL InsertStudent('$name',$age);
my procedure is not executing ... But it works fine if the $age has some values...