$phpself issue

gesf

Active member
You must use:
Code:
if (isset($_POST['id']))
Instead of:
Code:
if ($id)
For more information, please read this post!

Note: When submiting data via form, you must use $_GET / $_POST, depending on your form method. Otherwise use $_GET or $_REQUEST!
 
gesf said:
When submiting data via form, you must use $_GET / $_POST, depending on your form method. Otherwise use $_GET or $_REQUEST!
In that case... let´s say yes! And $_REQUEST too!
 
Back
Top