我有一个包含团队列表的 PHP 页面 (teamlist.php),每个团队都链接到关于该团队的问题页面。HTML 是:
./questions.php?team=wonderboys
问题页面使用团队变量来填充名为团队名称的隐藏字段。
teamlist.php 页面 10 次中有 9 次正确移交给 questions.php。
有时,页面崩溃并返回 404 错误“404 Not Found”。
在此服务器上找不到请求的资源!”
questions.php 页面如下所示:
<?php
$team= ($_GET['team']);
?>
<html>
the html page
</html>
我需要执行/正在寻找什么错误检查以防止发生此错误?
谢谢马修