I have the following function, which I'm struggling to convert:
/******************************************************/
function start() {
global $dpath, $rb_head, $rb_foot, $siteurl;
/******************************************************/
include("$dpath$rb_head");
$ip = getenv ("REMOTE_ADDR");
$urllink = getenv("HTTP_REFERER");
if (!ereg("$siteurl", "$urllink")) {
$urllink2 = "$siteurl";
//echo "<br /><b>Page being Referred</b>: <a href=$urllink2>$urllink2</a>\n";
}
else {
$urllink2 = "$urllink";
//echo "<br /><b>Page being Referred</b>: <a href=$urllink2>$urllink2</a>\n";
}
include("rb_form.php");
crkdo();
include("$dpath$rb_foot");
}
Any help would be appreciated.
Duncan