Jump to content

How to redirect to another page


sheraz

Recommended Posts

Sir, i am trying to redirect toa page after the username and password varification, but it is not working. i have used include() function but it is loading the page in same page. i am using header () function it is not displaying anything.

 

Please guide me how to solve it.

 

Here is the code

 

<?php

 

if($_POST['name']!="" AND $_POST['password']!="" )

{

$nm=$_POST['name'];

$pw=$_POST['password'];

 

$con=mysql_connect("localhost","","");

 

$select=mysql_select_db("tulip");

 

$qry=mysql_query("select * from admin");

 

$result=mysql_fetch_row($qry);

 

if($nm==$result[0] AND $pw==$result[1])

{

 

header('admin.php');

}

else

{

header('errorlog.php');

}

 

}

else

header('errorlog.php');

?>

 

:-\

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.