Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经检查了有关如何在 url 中传递 php 变量的各种讨论,但没有看到任何与我感兴趣的简单情况有关的讨论。我也想绝对确定我得到了一个最新的解决方案。
在一本数字书籍中,我想链接到 mypage2.php 并包含一个变量 $video。如何安全地传递此变量,如何“检测” $video 及其当前的“漏油”值?
非常感谢你。
制作一个链接,如:
printf('<a href="mypage2.php?video=%s">Link</a>', htmlspecialchars($video, ENT_COMPAT));
On mypage2.php,检查查询参数是否在 URL 中:
mypage2.php
if (!isset($_GET['video'])) { die('I need that query parameter!'); } $video = $_GET['video'];