<?php
session_start();
include 'scps_db.php';
if ($location == "")
{
echo "No location";
$style =="scps_style.css";
}
if ($location == 'Europe')
{
echo "Europe";
$style == "scps_style_europe.css";
}
if ($location == 'Asia')
{
$style == "scps_style.css";
}
?>
Im seeing the echos......but the style sheet is not changing.
Does this code look ok
With this for the stylesheet link
<link href="<?php echo "$style"; ?>" rel="stylesheet" type="text/css">
cheers