talk2toyin Posted February 23, 2013 Share Posted February 23, 2013 Hey gurus. I just installed WAMP on my PC and I tried accessing my designs on localhost but I get notices like: Undefined index: user in C:\wamp\www\DemoADResources\index.php on line 297 and my line 297 looks like this: <name="user" type="text" value="<?=$_POST['user'];?>" size="20"> these notices stops the script from executing. What do I do to go around these errors? Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/ Share on other sites More sharing options...
Jessica Posted February 23, 2013 Share Posted February 23, 2013 Notices do not stop your script from executing. They point out problems in your code. You're trying to use variables that aren't set yet. In this case, array indices, most likely from $_POST. Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414313 Share on other sites More sharing options...
talk2toyin Posted February 23, 2013 Author Share Posted February 23, 2013 I was just trying to echo the user input should error(s) occur during submission. How do I go about it? Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414314 Share on other sites More sharing options...
talk2toyin Posted February 23, 2013 Author Share Posted February 23, 2013 The manuals I learned with doesn't say how to go around this, didn't mention it at all Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414316 Share on other sites More sharing options...
Jessica Posted February 23, 2013 Share Posted February 23, 2013 You need to check if the value isset() first. Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414318 Share on other sites More sharing options...
talk2toyin Posted February 23, 2013 Author Share Posted February 23, 2013 You mean something like: if( isset( $_POST['user'] ) ) { $user = $_POST['user']; } Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414319 Share on other sites More sharing options...
Jessica Posted February 23, 2013 Share Posted February 23, 2013 Well that would work if you either give $user a default value as well or check if IT is set before using it. Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414320 Share on other sites More sharing options...
talk2toyin Posted February 23, 2013 Author Share Posted February 23, 2013 Thanks a lot. Trying it out right now Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414322 Share on other sites More sharing options...
talk2toyin Posted February 23, 2013 Author Share Posted February 23, 2013 It really did the magic. Thanks for the help Link to comment https://forums.phpfreaks.com/topic/274841-getting-these-errors-with-wamp-server/#findComment-1414325 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.