Re: PHP Sessions?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



The problem there is that I have to test if the user has logged on so I need to include the if statement? Can the session_start not be called from within an if statement? Does it really have to be the very first thing in the script, if so I imagine that this means a single script cannot be used to manage a complete website?

Chris W. Parker wrote:
rory walsh <mailto:rorywalsh@xxxxxx>
    on Wednesday, March 02, 2005 11:19 AM said:


<?php
if($_POST["username"]=="rory"){//if user logs in as rory start session
session_start();
header("Cache-control: private");
$_SESSION['loggedin'] = "yes";
}


Put session_start(); at the *very* beginning of your script. See if that
helps.



Chris.

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux