Parse error: parse error, unexpected T_ELSE in /home/httpd/vhosts/onstageshirts.com.au/httpdocs/login/updatecart.php on line 19
i know what the error means.. i just dont see why i should be getting it
any ideas?
<?
include("cnxt.php");
if (isset($_COOKIE['username']));
{
if ($blah)
{
$sql = "Update client_order set qty='$qty' where ordernumb ='$ordernumb'";
$product = mysql_query($sql) or die(mysql_error());
print ("<HEAD><META HTTP-EQUIV='refresh' CONTENT='3; URL=http://onstageshirts.com.au/login/checkout.php'><link rel='stylesheet' href='data.css' type='text/css'></HEAD><table cellpadding ='10' border='1' bordercolor='black' valign='center' align='center'><tr><td><center>Item Updated<br><br>You will be redirected shortly<br>If you are not redirected automatically or your browser doesnt forward you<br><a href='checkout.php'>Click Here</a></center></td></tr></table></form>");
}
}
else
{
Print("blah");
}
?>