daddyb1 Posted December 4, 2011 Share Posted December 4, 2011 I am trying to get 6 usernames and passwords from a local database via a file I created called database_log.inc. note 2 columns and 6 rows How can get each password & username with the current code? here is the code for the log on: <?php function clean($data) { $data = trim($data); $data = stripslashes($data); $data = htmlspecialchars($data); return $data; } $user = clean($_POST['username']); $pass = clean($_POST['password']); include 'database_log.inc'; //info from the database separate file if ($user == "shane" && $pass == "shane") //password and user name not in the database { session_start(); $_SESSION['username'] = $user; $_SESSION['password'] = $pass; $_SESSION['ON']="TRUE"; $lifetime=600; setcookie(session_name(),session_id(),time()+$lifetime); header( 'Location: inner.php' ) ; exit(); } else { header( 'Location: index.php' ); session_destroy(); exit(); } ?> Quote Link to comment https://forums.phpfreaks.com/topic/252434-if-conditions/ Share on other sites More sharing options...
QuickOldCar Posted December 4, 2011 Share Posted December 4, 2011 you should post a few lines of example data within your database_log.inc will have to explode it by it's delimiter for each value http://php.net/manual/en/function.explode.php Quote Link to comment https://forums.phpfreaks.com/topic/252434-if-conditions/#findComment-1294281 Share on other sites More sharing options...
daddyb1 Posted December 4, 2011 Author Share Posted December 4, 2011 table name login username password mjerry jerryjerry ssimon simonsimon ablack blackblack phenry henryhenry rjames jamesjames kpowell powellpowell this is the table in the database Quote Link to comment https://forums.phpfreaks.com/topic/252434-if-conditions/#findComment-1294428 Share on other sites More sharing options...
scootstah Posted December 4, 2011 Share Posted December 4, 2011 You should use fgets() with some regular expressions. Should git'r'done. Quote Link to comment https://forums.phpfreaks.com/topic/252434-if-conditions/#findComment-1294433 Share on other sites More sharing options...
daddyb1 Posted December 4, 2011 Author Share Posted December 4, 2011 @scootstah can you give an example? Quote Link to comment https://forums.phpfreaks.com/topic/252434-if-conditions/#findComment-1294436 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.