1
在我的代碼中,它應該打印「Testing ... Test Link」的主體,儘管它沒有。 你可以在這裏查看錯誤:http://pirates-online-rewritten.com/blog.php?ID=1 這是我的代碼:不打印博客文章的正文?
<?php
include "header.php";
include "connect.php";
$ID = mysql_real_escape_string(strip_tags(stripslashes($_GET['ID'])));
$getPost = mysql_query("SELECT * FROM Blogs WHERE ID='$ID'");
$gP = mysql_fetch_object($getPost);
echo $gp->Body;
include "footer.php";
?>
謝謝,它的工作,我的壞大聲笑 – Sam