代碼工作在本地主機,但不住服務器mysql_real_escape_string沒有爲GET方法正常工作
這裏是我的代碼
if(isset($_GET['email'])){
$email = mysql_real_escape_string($_GET['email']);
}
else{
$email = '';
}
if(isset($_GET['mobile'])){
$mobile = mysql_real_escape_string($_GET['mobile']);
else{
$mobile = '';
}
echo "Email : ".$email;
echo "<br>";
echo "Mobile : ".$mobile;
爲什麼責怪這個功能?你有沒有嘗試啓用error_reporting?你知道這個功能是什麼嗎? (→不是HTML輸出!) – mario
是否有連接到sql server? – shanechiu
不推薦使用Mysql擴展,不再可以從Php 7獲得..什麼是您的php版本 – user1844933