-1

您好,我正在制作博客 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>"; ?>
4

1 回答 1

3

PHP 不支持将双"标记作为转义方法。您需要使用\

print "<div class=\"post\">";

更好的是,将字符串包装在'字符中,这不会干扰它们:

print '<div class="post">';

在旁注中,<p class="meta">没有在您的 HTML 中关闭 - 看看它。

于 2013-09-27T00:46:58.167 回答