Thread: Undefined Index
View Single Post
  #2 (permalink)  
Old 09-27-09, 05:05 PM
captcha captcha is offline
Newbie Coder
 
Join Date: Jul 2009
Posts: 24
Thanks: 0
Thanked 1 Time in 1 Post
Is the forms action="" really pointing to your php script?

Check if you get any errors:
PHP Code:

error_reportingE_ALL E_STRICT ); 

Check if the variables you`r trying to use are set:
PHP Code:

var_dump($_REQUEST); 

is php even working on your server?
does <?php phpinfo(); ?> for ex. show something?
Reply With Quote