can any one help with this little bit of code it says Parse error: syntax error, unexpected T_STRING on line 67 and line dosent exist
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=hp8_english_ci" />
<title>jobs made 4 u says thanks</title>
</head>
<body>
<!-- Reminder: Add the link for the 'next page' (at the bottom) -->
<!-- Reminder: Change 'YourEmail' to Your real email -->
<?php
if($POST['submit'] == "Submit")
{
$visitor = $POST['visitor'];
}
else
{
if($visitor == '')
echo '<li>You forgot to enter a name!</li>';
}
$username="ace01";
$password="ace01";
$database="ace";
$link = mysql_connect('nineteen77couk.fatcowmysql.com', 'ace01', 'ace01');
if (!link)
{
die('Could not connect: ' . mysql_error());
}
echo 'Connected successfully';
mysql_select_db('ace',$link);
$value=$_POST['visitor'];
$value2=$_POST['visitormail'];
$sql = "INSERT INTO ACE (visitor, visitormail) VALUES ('$value', '$value2');"
mysql_query($sql) or die (mysql_error());
mysql_close();
?>
mant thanks