在 PHP 中结合 $_GET 和 $_POST ?
对于一些朋友和家人(不同的站点),我创建了一个脚本,允许他们将数据输入数据库。通过
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您不关心数据是来自
$_COOKIE
、$_GET
还是$_POST
,则可以使用$_REQUEST
。If you don't care whether data came from a
$_COOKIE
,$_GET
, or$_POST
, you can use$_REQUEST
.