I keep getting this error, I was told its quotes or brackets that are unclosed but I can't seem to see it. Can anyone see if they spot it?
<?php
require('var.inc.php');
?>
<html>
<head>
<title><?php echo cWEB_SITE_TITLE; ?></title>
</head>
<body>
<h1><?php echo cWEB_SITE_TITLE; ?></h1>
<form action="link.php" method="post">
URL to Shrink: <input type="text" name="url"> <input type="submit" value="Shrink!">
</form>
<?php
connect();
$count = mysql_query("SELECT COUNT(*) FROM ".cTABLE.");
if ($count => 1)
{
echo '<p>'.$count.' Links Shrunk So Far...</p>';
}
else
{
echo 'No links have been shrunk yet';
}
?>
</body>
</html>