what is wrong with this one? it's another parse error.
echo "\">[Remove]</a></td></tr>";
echo "<tr><td CLASS=CELL1>".$myrow["linkdesc"]."</td></tr>";
}
if($submit)
{
mysql_query("INSERT INTO `links` (`name`, `link`, `description`) VALUES ('$linkname', '$linkurl', '$linkdesc')");
echo("Added.");
}
else
{
?>
<form action="edlink.php" method="post">
Link Name: <input name="linkname" type="text" /><br />
Link URL: <input name="linkurl" type="text" /><br />
Description: <textarea name="linkdesc"></textarea>
<tr><td colspan=3><input type=\"submit\" name=\"post\" value=\"Add Link\"></td></tr>
</form>
}
?>