Hey Hey,
This is driving me nuts, and I know it's something stupid... All I need is a fresh set of eyes to look it over and tell me where I'm FUBARing it.
connect.php
Code:<? $user = "XXXXX"; $pass = "XXXXX"; $db = "XXXXXX"; $myserver = "XXXXX"; $connect = mysql_connect($myserver, $user, $pass) of die("Connect"); $select_db = mysql_select_db($db) or die("DB Selection"); ?>
login.php
It should be going to the next page but it does nothing... I just get a blank screen.... I've even put echo's after ever single line of code from line 1 to the end... and none of the echo's ever show up.... I just keep gettingCode:<? session_start(); include 'inc/connect.php'; if ( $_POST['username'] != "" AND $_POST['password'] != "" ) { $username = $_POST['username']; $password = md5($_POST['password']; $username = htmlspecialchars($username); $username = stripslashes($username); $query = 'SELECT * FROM tblUsers WHERE userName = "' . $username . '" AND userPassword = "' . $password . '" LIMIT 1'; $result = mysql_query($query); $numResult = mysql_num_rows($result); if ( $numResult == 1) { $userInfo = mysql_fetch_array($result); $_SESSION['sessionID'] = $userInfo['userID']; header("Location: http://www.xxx.ca/next.php"); } } else { header("Location: http://www.xxx.ca/index.php"); } ?>
Peace,Code:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=windows-1252"></HEAD> <BODY></BODY></HTML>
HT




Reply With Quote