PHP error Parse error: syntax error, unexpected '<' in [location]index.php on line 7
本问题已经有最佳答案,请猛点这里访问。
我对php有点陌生,我主要使用html。我编写了一个PHP脚本。代码应该做的是在我输入代码时显示YouTube视频。这样地"website.com/youtube.php?v=101011"它将显示YouTube视频,但我不断得到错误:
Parse error: syntax error, unexpected '<' in [location]/index.php on line 7
代码如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | <?php if( $_GET["v"]) { $matches = $_GET['v']; echo"Welcome". $_GET['v']."<br />"; <html> <iframe width="560" height="315" src="https://www.youtube.com/embed/" </html><?php . $_GET['v']. ?> <html>frameborder="0" allowfullscreen></iframe> </html> exit(); } ?> <html> <body> <form action="<?php $_PHP_SELF ?>" method="GET"> Name: <input type="text" name="v" /> <input type="submit" /> </form> </body> </html> |
当您想停止编写PHP代码时,必须编写
在第7行,您有