我的身份证是a5efa5
。
下面替换 deprecated[?][^a-z0-9]
的代码不起作用。a5efa5
在我的数据库表中的一个 id 中。
//Connect to the database through our include
include_once "database.php";
// Get the member id from the URL variable
$id = $_REQUEST['id'];
$id = ereg_replace("[^a-z0-9]", "", $id); // filter everything but numbers for security
if (!$id) {
echo "Missing Data to Run";
exit();
}
帮帮我吧朋友,我哪里做错了...