So, on your second page you NEVER see the "Welcome..." get echoed out? It
always forwards you to the user.php page?

> -----Original Message-----
> From: H. J. Wils [mailto:[EMAIL PROTECTED]
> Sent: Thursday, June 24, 2004 11:44 AM
> To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
> Subject: Re: [PHP-DB] [PHP]: session problem
> 
> 
> this is the code, but this code works on my hosting provider 
> but not on my 
> own server. I think i have to change settings in php.ini but 
> dont know 
> which...
> first page:
> 
> session_start();
> 
> include "connect.php";
> include "functions.php";
> 
>           $user= $_GET["email"];
>           $ww = $_GET["ww"];
> 
>           $check_user_query = "select id,email, password from 
> user where 
> email='$user' and password='$ww'";
>           $check_user_res = mysql_query($check_user_query) or 
> die(mysql_error().": $check_user_query");
> 
>           if (mysql_num_rows($check_user_res) == 1){
>                  //user is ingelogd
> 
>                                $userdata = 
> mysql_fetch_array($check_user_res);
>                        $sid=session_id();
>                                $uid=$userdata["id"];
>                        $_SESSION['logged_in'] = true;
>                        $_SESSION['sid'] = $sid;
>                        $_SESSION['user'] = $uid;
> 
>                        $dt = date("Y-m-d H:i:s");
> 
>              header("location: user.php?action=0");
>           }else{
>                  header("location: user.php?action=9");
>               }
> 
> 
> second page:
> 
> <?php
> 
> session_start();
> 
> if ( isset($_SESSION['logged_in'])){
> 
> echo "Welcome...";
> 
> }else{
>         header("location: user.php?action=9");
> }
> ?>
> 
> _________________________________________________________________
> Hotmail en Messenger on the move 
> http://www.msn.nl/communicatie/smsdiensten/hotmailsmsv2/
> 
> -- 
> PHP Database Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 
> 

-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to