我想从此链接获取信息
index.php?site=server?id=1
当我尝试达到 id=1 时,我的系统崩溃了。
<?php
$site="";
$site=$_GET['site'];
if(!isset($site)) $site="news";
$invalide = array('\\','/','/\/',':','.');
$site = str_replace($invalide,' ',$site);
if(!file_exists($site.".php")) $site = "error";
include($site.".php");
?>
有人可以帮我升级这个系统以获取数据第二段吗?