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 从 URL 获取值,我可以使用以下代码,它在 localhost 中工作,但在生产服务器中不工作。
示例.php
<a href="report.php?id=<?php $a=5; echo $a; ?>">View</a>
报告.php
<?php $id=$_GET['id']; echo $id; ?>
此代码在 localhost 中输出 5,但在生产服务器中未给出该值。
尝试这个:
<a href="report.php?id=5">View</a>
在我的服务器测试中,本地主机和服务器的输出都是 5。我认为问题主要是由您的服务器/php 配置引起的。