Hello,
I am attempting sessions... I do not want to use cookies.
any way when some one goes to
http://www.passageinternational.com/demo
the index.php file has the following:
<?PHP
$SESSION["site"] = "demo";
$SESSION["sitedisplay"] = "yes";
$SESSION["cliqbook"] = "no";
$SESSION["employee"] = "Chris Wheat";
$SESSION["sitelogo"] = "demo/logo.gif";
$SESSION["sitename"] = "Demo Company";
$SESSION["siteurl"] = "http://www.passageinternational.com/demo";
$SESSION["site_qg_feedisplay"] = "no";
$_SESSION["site_qg_fee"] = "0.00";
$new_url = "http://www.passageinternational.com/welcome.php";
header("Location: $new_url");
?>
Now on welcome.php I have some coding like
<?php if ($sitedisplay == "yes") { print "$sitename's Travel Center"; }else{ print "Welcome to Passage International"; }?>
yet this is not working? Maybee the session is not happening?
I do not get a phpid eather
what is missing in my index.php file?
Thanks
Chris