我如何从一个页面到另一个重定向页面获取数组ID

时间:2013-07-05 12:44:56

标签: php mysql arrays post redirect

这是我的第一篇文章。我搜索了很多,但我找不到我想要的东西。所以我有这个文件打破帖子的内容,并阅读更多:

<?php

include('../root/admin/includes/connect.php');
$sql = "SELECT * FROM posts";
$result = mysql_query($sql);
while ($row = mysql_fetch_array($result)) {
    echo "\n";
    echo truncate($row['Content'], "article.php", "article_id", $row['ID']);
}

//function to truncate text and show read more link  
function truncate($mytext, $link, $var, $id) {
    //Number of characters to show  
    $chars = 25;
    $mytext = substr($mytext, 0, $chars);
    $mytext = substr($mytext, 0, strrpos($mytext, ' '));
    $mytext = $mytext . " <a href='$link?$var=$id'>read more...</a>";
    return $mytext;
}

?>

现在我有了这个文件

<?php

include('includes/connect.php');
$id = isset($_GET['ID']);
$query = mysql_query("SELECT * FROM posts WHERE ID='$id'") or die(mysql_error());
if (mysql_num_rows($query) == 0) {
    echo "<tr><td colspan=\"3\">No Posts Were Found</td></tr>";
} else {
    while ($post = mysql_fetch_assoc($query)) {
        echo "<div class='perigrama'><div class='titlos'><h2><a href='#'>" . $post['Title'] . "</a></h2></div><div class='infos'><p>Posted by <a href='#'>" . $post['Author'] . "</a> on March 10, 2011 | <a href='#'>Full article</a></p></div><div class='image'><img src='#' width='540' height='300'></div><div class='content'><p>" . $post['Content'] . "</p></div><div class='more'><p><a href='#'>Full details</a></p></div></div>";
    }
}
?>

这个文件我想在这里根据ID从数据库输出帖子,当我点击阅读更多:

<html>
    <head>
        <title></title>
    </head>
    <link rel="stylesheet" type="text/css" href="../test/testdivformascss.css">
    <body>
        <?php
        include('functions1.php');
        ?>
    </body>
</html>

当我点击时,我有这样的输出阅读更多它将我重定向到正确的页面ID,但是我说找不到帖子。

如果你能告诉我如何做到这一点,我会很高兴看到它。提前谢谢!

1 个答案:

答案 0 :(得分:2)

更改

$id=isset($_GET['ID']);

$id=isset($_GET['article_id']) ? (int)$_GET['article_id'] : 0;

$id = isset($_GET['ID']); - 这会返回bool,而且它始终为false,因为$_GET

中没有ID

您的链接看起来像$mytext = $mytext . " <a href='$link?$var=$id'>read more...</a>";

它由truncate函数解析,输出

<a href='article.php?article_id=SOME_ID'>read more...</a>

所以你应该使用$_GET['article_id']来获取这个id,你应该把它转换为int by(int)或intval()

还有两件事。

  1. 您的代码非常危险,您应该阅读并搜索一些涵盖 SQL_INJECTION

  2. 的主题
  3. Mysql_ *函数已被删除,将来会被删除。请改用 PDO Mysqli 。这些引擎有一些称为预处理语句的东西,并且通过param绑定,您不必处理正确的转义。