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.
嗨,我只是 php 的新手,我试图简单地从我从 php-mysql 结果的输出生成的链接中发布数据。我一直在寻找结果,但其中大多数都需要在 html5 中使用表单标签。有没有一种方法可以将数据从超链接发布到 url,然后使用这些数据,最好是主键,然后显示该数据的生成页面?
听起来您想使用获取而不是发布。
<a href="index.php?id=10">Link</a>
然后在您的 PHP 脚本中:
$primarykey = $_GET['id'];
(但请注意 SQL 注入)。
http://php.net/manual/en/reserved.variables.get.php