voloproductions Posted October 18, 2009 Share Posted October 18, 2009 Hey everyone I get this error and need to know how to fix it in my code. I am new to PHP so I am not sure what to do here. Thanks! Notice: Undefined variable: mode in C:\wamp\www\iom\log.php on line 12 THE ERROR AND OR ISSUE: Notice: Undefined variable: mode in C:\wamp\www\iom\log.php on line 37 MY CODE: <?php if(isset($_POST['mode'])) { $mode = $_POST['mode']; } if(isset($_GET['mode'])) { $mode = $_GET['mode']; } switch ($mode) { case 'login': $username = $_POST['login']; $password = $_POST['password']; include ('db_fns.php'); if (!connector()) { die ('connection dies'); } if (loginCheck($username, $password)) { header('location: loggedin.php'); } else { die ('login has failed <a href="login.html">Click here to login again</a>'); } break; case 'adduser': if ($_SESSION['userLevel'] < 2) { die('access denied'); } $username = $_REQUEST['userName']; $password = $_REQUEST['passWord']; $firstName = $_POST['firstName']; $lastName = $_POST['lastName']; $department = $_POST['department']; $userLevel = $_POST['userLevel']; if (empty($username) || empty($password)){ echo "please enter a username."; die; } //print_r($_POST); include ('db_fns.php'); if (!connector()) { die ('connection dies'); } if(!addUser($username,$password,$firstName,$lastName,$department,$userLevel)) { die('There was a problem - contact the system administrator'); } else { echo "Data has been submitted. <a href=\"/IOM/admin\">return to administration</a>"; } break; default: break; } ?> Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/ Share on other sites More sharing options...
smerny Posted October 18, 2009 Share Posted October 18, 2009 it's because $mode is used in the switch but it is only conditionally initiated... decide what you want for a default and set $mode to that before the if(isset's Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938959 Share on other sites More sharing options...
voloproductions Posted October 18, 2009 Author Share Posted October 18, 2009 im sorry I dont get it still, can you give me a written code example on how to fix this. Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938963 Share on other sites More sharing options...
smerny Posted October 18, 2009 Share Posted October 18, 2009 <?php $mode = "login"; // or whatever you want the 'default' value to be if(isset($_POST['mode'])) { $mode = $_POST['mode']; } if(isset($_GET['mode'])) { $mode = $_GET['mode']; } Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938967 Share on other sites More sharing options...
voloproductions Posted October 18, 2009 Author Share Posted October 18, 2009 doing the above gets the following... Notice: Undefined index: login in C:\wamp\www\iom\log.php on line 15 Notice: Undefined index: password in C:\wamp\www\iom\log.php on line 16 Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938969 Share on other sites More sharing options...
voloproductions Posted October 18, 2009 Author Share Posted October 18, 2009 never mind I fixed it... I used a funky value. Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938971 Share on other sites More sharing options...
voloproductions Posted October 18, 2009 Author Share Posted October 18, 2009 how about this??? Notice: Undefined index: userLevel in C:\wamp\www\iom\index.php on line 28 Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-938999 Share on other sites More sharing options...
smerny Posted October 18, 2009 Share Posted October 18, 2009 because you are trying to pull that variable from POST when there is nothing there....maybe you mean to pull it from SESSION? Quote Link to comment https://forums.phpfreaks.com/topic/178081-need-help-notice-undefined-variable/#findComment-939008 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.