我只是想从一个名为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&category=<?php echo $results['article']->category?>"><?php echo htmlspecialchars($desc)?></a></li>
<?php}?>
答案 0 :(得分:0)
感谢所有答案,最后我明白了。你不应该在php
中关闭这样的括号<?php? ?>