TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   How to navigate through pages automatically without href links (http://www.talkphp.com/general/4148-how-navigate-through-pages-automatically-without-href-links.html)

shankar 04-17-2009 06:05 AM

How to navigate through pages automatically without href links
 
$_SESSION['username']=$username;
$type=$dbtype;

if($type=="Student")
{
//codes for guest acc stud_login.php
}

else
{
//codes for guest acc guest_login.php
}

How to navigate to a specific page?? automatically

sketchMedia 04-20-2009 04:00 PM

Looks like you need to header function, like this:
PHP Code:

$_SESSION['username']=$username;
$type=$dbtype;

if(
$type=="Student")
{
    
header("Location: stud_login.php");
}
else
{
    
header("Location: guest_login.php");




All times are GMT. The time now is 06:03 AM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0