Forum Moderators: coopster

Message Too Old, No Replies

Help With Login Script

Login to redirect to page.

         

justinking1994

9:31 pm on Jan 18, 2010 (gmt 0)

10+ Year Member



Alright I really need help, I have no idea how to do this but here is what I need, I have a simple login php script however I want it so that different users when they log in, get directed to different pages of the website the scripts that follow is what I am using also how can I make a register page for the users please help:

main_login.php:

<table width="300" border="0" align="center" cellpadding="0" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<form name="form1" method="post" action="checklogin.php">
<td>
<table width="100%" border="0" cellpadding="3" cellspacing="1" bgcolor="#FFFFFF">
<tr>
<td colspan="3"><strong>Member Login </strong></td>
</tr>
<tr>
<td width="78">Username</td>
<td width="6">:</td>
<td width="294"><input name="myusername" type="text" id="myusername"></td>
</tr>
<tr>
<td>Password</td>
<td>:</td>
<td><input name="mypassword" type="text" id="mypassword"></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>&nbsp;</td>
<td><input type="submit" name="Submit" value="Login"></td>
</tr>
</table>
</td>
</form>
</tr>
</table>

checklogin.php:

<?php
$host="#######"; // Host name
$username="a2297525_login"; // Mysql username
$password="#####"; // Mysql password
$db_name="a2297525_login"; // Database name
$tbl_name="members"; // Table name

// Connect to server and select databse.
mysql_connect("$host", "$username", "$password")or die("cannot connect");
mysql_select_db("$db_name")or die("cannot select DB");

// username and password sent from form
$myusername=$_POST['myusername'];
$mypassword=$_POST['mypassword'];

// To protect MySQL injection (more detail about MySQL injection)
$myusername = stripslashes($myusername);
$mypassword = stripslashes($mypassword);
$myusername = mysql_real_escape_string($myusername);
$mypassword = mysql_real_escape_string($mypassword);

$sql="SELECT * FROM $tbl_name WHERE username='$myusername' and password='$mypassword'";
$result=mysql_query($sql);

// Mysql_num_row is counting table row
$count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row

if($count==1){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
}
else {
echo "Wrong Username or Password";
}
?>

login_success.php:

############### Code

<?
session_start();
if(!session_is_registered(myusername)){
header("location:main_login.php");
}
?>

<html>
<body>
Login Successful
</body>
</html>

logout.php:

<?
session_start();
session_destroy();
?>

TheMadScientist

10:42 pm on Jan 18, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Welcome to WebmasterWorld!

The second question is more than I have time to answer, but setting an identifier, which could be the correct location for the redirect, when a user subscribes and then retrieving the identifier at login is probably easiest... Here's an example using number rather than an exact location:


// Mysql_num_row is counting table row
// $count=mysql_num_rows($result);
// If result matched $myusername and $mypassword, table row must be 1 row

if($loggedin=mysql_fetch_array($result)){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword");
if($loggedin['location']==1) {
header("location:login_success1.php");
}
elseif($loggedin['location']==2) {
header("location:login_success2.php");
}
elseif($loggedin['location']==3) {
header("location:login_success3.php");
}
}
else {
echo "Wrong Username or Password";
}

justinking1994

11:04 pm on Jan 18, 2010 (gmt 0)

10+ Year Member



Where would I put this in my script since I am very new.

TheMadScientist

11:38 pm on Jan 18, 2010 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member Top Contributors Of The Month



Right where I copied and pasted it from...
It's a replacement for what you had. ;)