在 PHP 中结合 $_GET 和 $_POST ?

发布于 2024-11-04 01:12:32 字数 522 浏览 0 评论 0原文

对于一些朋友和家人(不同的站点),我创建了一个脚本,允许他们将数据输入数据库。通过

echo ("<a href=\"./pagina.php?ID=" . $row['ID'] . "\">" . $row['ID'] . "<br>");

,我将所请求表的 ID“发送”到 URL。

在 pagina.php 中,我有以下代码:

ID: <?php echo $_GET["ID"]; ?>

当然可以,但现在我想使用该 ID 来显示数据库中的数据,而不是 URL 中的数据。这些值为 " . $row['onderwerp'] . "" . $row['tekst'] . " (可能会有更多的价值,但我只是一个初学者,试图让一些东西发挥作用)。

我知道这是可能的,但我就是无法让任何东西发挥作用,因为我刚刚开始学习 PHP。

我希望你能帮助我。

for some friends and family (different sites), I created a script that allows them to input data into the database. With

echo ("<a href=\"./pagina.php?ID=" . $row['ID'] . "\">" . $row['ID'] . "<br>");

, I 'send' the ID of the requested table to the URL.

In pagina.php, I have this code:

ID: <?php echo $_GET["ID"]; ?>

That works, of course, but now I want to use that ID to also display the data from the database, so not from the URL. These values are " . $row['onderwerp'] . " and " . $row['tekst'] . "
(There may be more values to come, but I'm just a beginner, trying to get something to work).

I know this is possible, but I just can't get anything to work, as I have just started learning PHP.

I hope you can help me.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谈情不如逗狗 2024-11-11 01:12:32

如果您不关心数据是来自 $_COOKIE$_GET 还是 $_POST,则可以使用 $_REQUEST

If you don't care whether data came from a $_COOKIE, $_GET, or $_POST, you can use $_REQUEST.

能怎样 2024-11-11 01:12:32
$id = (int)$_GET['id'];

$sql = "SELECT onderwerp, tekst FROM yourtable WHERE id=$id";
$result = mysql_query($sql) or die(mysql_error());

while($row = mysql_fetch_assoc($result)) {
    echo "{$row['onderwerp']} - {$row['tekst']}<br />";
}
$id = (int)$_GET['id'];

$sql = "SELECT onderwerp, tekst FROM yourtable WHERE id=$id";
$result = mysql_query($sql) or die(mysql_error());

while($row = mysql_fetch_assoc($result)) {
    echo "{$row['onderwerp']} - {$row['tekst']}<br />";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文