Hello,
I'm not sure why I'm receving this error. I've looked at the code over and over again and can't seem to find anything. If anyone has an idea I would be most greatful. Here is the error I'm receiving when I bring up the page with IE 6:
Line: 10
Char: 1
Error: Object Expected
Code: 0
URL: http://www.hintsforhomes.com/menu.php?action=login
--------------- code follows --------------
<?php
$todayis = date("l, F j, Y");
$action = "";
$client_url = "";
extract( $POST );
extract( $GET );
$menu = $client_url;
if ($menu != "") / LINE 10 ERROR LINE /
{
header("Location: $client_url");
exit;
}
else
{
?>
<?php
include("protection.php");
?>
<html>
<head>
<title>Hints for Homes | Menu Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link href="style001.css" rel="stylesheet" type="text/css">
</head>
<body link="#0000FF" onLoad="MM_preloadImages('images/tell_a_friend_on.gif')">
<form name="menu" method="get" action="<?php $SERVER['PHP_SELF']?>" target="blank" >
<select name="client_url">
<option value="none">< ------------- select ------------- >
<option value="http://www.aga-kitchen.com">Aga Kitchen</option>
</select>
<input name="redirect" type="submit" value=" GO ">
</form>
<?php
}
?>
</body>
</html>