indeed...


From: "Hutchins, Richard" <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: RE: [PHP-DB] [PHP]: session problem
Date: Thu, 24 Jun 2004 11:52:38 -0400
MIME-Version: 1.0
Received: from pb1.pair.com ([216.92.131.4]) by mc6-f23.hotmail.com with Microsoft SMTPSVC(5.0.2195.6713); Thu, 24 Jun 2004 08:53:06 -0700
Received: (qmail 46847 invoked by uid 1010); 24 Jun 2004 15:52:42 -0000
Received: (qmail 46808 invoked by uid 1010); 24 Jun 2004 15:52:42 -0000
X-Message-Info: JGTYoYF78jFRl5xFT3FYrNMzPyW4jY3K
Mailing-List: contact [EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
list-help: <mailto:[EMAIL PROTECTED]>
list-unsubscribe: <mailto:[EMAIL PROTECTED]>
list-post: <mailto:[EMAIL PROTECTED]>
Delivered-To: mailing list [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
Message-ID: <[EMAIL PROTECTED]>
X-Mailer: Internet Mail Service (5.5.2657.72)
Return-Path: [EMAIL PROTECTED]
X-OriginalArrivalTime: 24 Jun 2004 15:53:08.0025 (UTC) FILETIME=[57F45A90:01C45A03]


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

_________________________________________________________________
Talk with your online friends with MSN Messenger http://messenger.msn.nl/

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



Reply via email to