Programming Tutorials

Comment on Tutorial - isset() function in PHP By Emiley J.



Comment Added by : krunal

Comment Added at : 2012-11-22 10:30:19

Comment on Tutorial : isset() function in PHP By Emiley J.
if(isset($_POST["check1"]=="1"))
{
$check1 = $_POST["check1"];
echo "check1 is checked\n";
}

This shows me an error in first line...
i am not sure about the syntax...
plz help whether it is proper or not...


View Tutorial