PHP MySQL简单脚本不起作用

时间:2017-11-27 04:23:23

标签: php html mysql

我只是想从一个名为categories的表中检索一个条目。

<?php
  $conn = new PDO(DB_DSN, DB_USERNAME, DB_PASSWORD);
  $sql  = "SELECT description FROM categories WHERE STRCMP(id,:id)=0";
  $st   = $conn->prepare($sql);
  $st->bindValue(":id", $results['article']->category, PDO::PARAM_STR);
  $st->execute();
  $desc  = $st->fetch();
  $conn = null;
  if ($desc)
      {?>
        <li><a href="index.php?action=viewByCategory&amp;category=<?php echo $results['article']->category?>"><?php echo htmlspecialchars($desc)?></a></li>
<?php}?>

1 个答案:

答案 0 :(得分:0)

感谢所有答案,最后我明白了。你不应该在php

中关闭这样的括号
<?php? ?>