-
I have just started exploring PHP. I have installed PHP, Mysql and Apache. When I try any form there seems t be a notice and I am not able to post variables. The notice I get in the browser is :
Notice: Undefined variable: submit in (file.php) on line 16
Please tell me what I need to do to get rid of this and proceed.
Thank you
-
Please, write the content of this line or better the whole listing.
-
Hoi,
got new PHP (of course) ?
got an old script?
For all vars that your script is sending, add lines like
$submit = $_POST['submit']
near the top of your file
Musicman
-
Thank you ...its gone
The Notice is gone. I added
$submit = $_POST['submit']
and it worked. Thanks a million.
I will be asking for more help...later.