shah Posted May 16, 2009 Share Posted May 16, 2009 Hi all, i am using some php code in my website. i am getting the following error. kindly tell me what could be the problem Notice: Undefined index: submit in index.php on line 9 Notice: Undefined variable: _post in index.php on line 88 does it mean i have to set the global variables in the config file or something like that?? i would appreciate your help Thanks Syed Link to comment https://forums.phpfreaks.com/topic/158410-undefined-variable-_post-errir/ Share on other sites More sharing options...
Ken2k7 Posted May 16, 2009 Share Posted May 16, 2009 First error - You're probably using $_POST['submit'], $_GET['submit'] or $_REQUEST['submit'] in some function without checking if it exists or not. You should always check. Second error - I assume you used $_post instead of $_POST. Case-sensitive. Link to comment https://forums.phpfreaks.com/topic/158410-undefined-variable-_post-errir/#findComment-835414 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.