Giả sử mỗi bài báo đều có ID của nó. Thay đổi liên kết để chuyển đến một trang động, chuyển ID đó:
"<div class=\"title\"><a href=\"dynamic_page.php?id=$result[id]\">$result[title]</a></div>"
Sau đó, tạo một dynamic_page.php
chấp nhận ID đó và tạo bài viết như sau:
if (isset($_GET['id'])) {
$id = mysql_real_escape_string($_GET['id']);
$q = "SELECT
*
FROM
`article`
WHERE
`id` = '$id'
LIMIT 1;";
$q = mysql_query($q);
if (mysql_num_rows($q) > 0) {
$result = mysql_fetch_assoc($q);
echo "<div class=\"article\">".
"<div class=\"title\">".$result['title']."</div>".
"<div class=\"body\">".$result['body']."</div>".
"<div class=\"cat\"><a href=\"".$result['cat'].".php"."\">"."Category: ".$result['cat']."</a></div>".
"<div class=\"author\">"."Author: ".$result['author']."</div>".
"<div class=\"dateTime\">"."Date: ".$result['date']."</div>".
"</div>";
}
else {
/* Article not found */
}
}
Lưu ý rằng $result['body']
được hiển thị đầy đủ trong thời gian này. Ngoài ra, tôi khuyên bạn nên sử dụng mysql_fetch_assoc()
trong trường hợp của bạn.
Mã là đây