我把博客作为学校项目,只是一个bit子。
该项目的一项要求是使用mar,这对我来说是完全新的。
My problem is that I want to assign the "blog-posts" from my database to smarty variables. My approach is like this:
<?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”。 如何利用婚姻来做到这一点?