帮忙看看哪儿错了?
<?php
$name=$_POST["name"];
$url=$_POST["url"];
$form=file_get_cintents("lostform.dat");
if($name$url==$form){
echo'请不要重复提交相同内容!';
}eles{
file_put_contents("bookmark.dat","<a href=\"$url\">$name</a><br>",FILE_APPEND);
file_put_contents("lostform.dat","$name$url");
};
?>
Parse error: syntax error, unexpected T_VARIABLE in /home/u239024524/public_html/bookmark/index.html on line 11
我就是看不出哪儿有错,这只是一段,提示if的那一行有错
};←_←多出一个“;”