私のIDは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();
}
友達を助けて、どこで間違えたの...