您好我正在制作一个博客PHP脚本,我无法让它工作。 我一直收到错误。
如果有用,我使用的是Microsoft WebMatrix 3.
<?php
Print "<div class=""post"">
<h2 class=""title""><a href=""#"">" .$info['title'] ."</a>
</h2><p class=""meta"">Posted by <a href=""#"">" .$info['name'] ."</a>".$info['date'] ."<div class=""entry""><p>".$info['post']"</p></div></div>"; ?>
答案 0 :(得分:3)
PHP不支持双"
标记作为转义方法。您需要使用\
:
print "<div class=\"post\">";
更好的是,将字符串换成'
字符,这不会干扰它们:
print '<div class="post">';
在旁注中,您的HTML中未关闭<p class="meta">
- 请仔细查看。