以下代码行
echo “<a href=’http: //localhost/moviesite.php?favmovie=Stripes' > ";
抛出错误
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
关于我在这里做错的任何帮助都会有所帮助。谢谢!
以下代码行
echo “<a href=’http: //localhost/moviesite.php?favmovie=Stripes' > ";
抛出错误
Parse error: syntax error, unexpected T_STRING, expecting ',' or ';'
关于我在这里做错的任何帮助都会有所帮助。谢谢!
您的第一个双引号和单引号不正确,应该是"
and '
:
echo "<a href='http://localhost/moviesite.php?favmovie=Stripes'>";
另一方面,我认为这会更好("
在 HTML 中使用):
echo '<a href="http://localhost/moviesite.php?favmovie=Stripes">';
有关PHP 字符串和引号的更多信息
第一个引号是错误的类型:
echo “<a href=’http: //localhost/moviesite.php?favmovie=Stripes' > ";
应该
echo "<a href='http: //localhost/moviesite.php?favmovie=Stripes' > ";