Sketch
01-20-2003, 05:51 PM
What is the wildcard in PHP? Is it * or %?
IOW, this script (at the bottom of ./global.php) is supposed to check the referer and based on whether the refere is coming from one url or another set a variable...
It doesn seem to be workiong properly... :(
//HACK CHECK FOR REFERER STYLE
if ($_SERVER['HTTP_REFERER'] == '*forums.barefooting.com')
{
$bbuserinfo[styleid]=3;
}
if ($_SERVER['HTTP_REFERER'] == '*forum.hostareus.com')
{
$bbuserinfo[styleid]=1;
}
//END HACK
?>
IOW, this script (at the bottom of ./global.php) is supposed to check the referer and based on whether the refere is coming from one url or another set a variable...
It doesn seem to be workiong properly... :(
//HACK CHECK FOR REFERER STYLE
if ($_SERVER['HTTP_REFERER'] == '*forums.barefooting.com')
{
$bbuserinfo[styleid]=3;
}
if ($_SERVER['HTTP_REFERER'] == '*forum.hostareus.com')
{
$bbuserinfo[styleid]=1;
}
//END HACK
?>