0
This php code is not working plz help me out......
2 Respostas
+ 29
You are trying to access the variable, that doesn't exist.
Use isset($_POST['name']) to check if a variable exists.
Unfortunately, Sololearn doesn't support form submitting and handling.
Try to run this code on your local server.
+ 2
you're setting $name, $age, etc. to isset($_POST['name']). That will return a boolean so your just setting the variables to true or false.