我正在将博客作为学校项目制作,但有点卡住了。
该项目的要求之一是使用 smarty,这对我来说是全新的。
我的问题是我想将数据库中的“博客文章”分配给 smarty 变量。我的方法是这样的:
<?php
require_once('connect_db.php');
$result = $db->query("SELECT * FROM Innlegg");
while ($row = $result->fetch_assoc())
{print ("<h1>" . $row["forfatter"] . "</h1>");
print ($row["innhold"]);}
?>
现在我只是从“Innlegg”打印出“forfatter”。这是如何使用 smarty 完成的?