0

我正在尝试创建类似于博客脚本的东西。

我有一个在 Stackoverflow.com 上找不到的问题

假设我在我的 MySQL 数据库中添加了帖子。而且我也可以取到它们。但是,我如何为他们分配自己唯一的页面 URL,然后获取该特定帖子并将其显示在该页面上。

我希望 URL 类似于 wordpress 和其他脚本中的内容。

4

1 回答 1

1

假设在您的数据库中有一个名为“posts”的表,其中有一个“id”列和一个“title”列等......然后你可以这样进行:

<?php
$q = mysql_query('select id, title from posts') # select posts

while ($row = mysql_fetch_assoc($q)) {
    //dumps article links
    echo sprintf("<a href='mysite.com/article.php?id=%s'>%s</a>", $row['id'], $row['title']);
}
?>
//so, at in article.php

<?php

$article_id = $_GET['id']; //Warning: filter user data

$article = mysql_query("select * from posts where id=$article_id") # select post by id collumn

while ($row = mysql_fetch_assoc($q)) {
    //dump article content...    
}
于 2012-10-14T06:24:34.997 回答