我怎樣才能得到結果?:如何獲得此MYSQL查詢的結果?
$check = mysql_query("select username, email, case
when max(username = '$username') > 0 and max(email = '$email') > 0 then 'both'
when max(username = '$username') > 0 then 'username'
when max(email = '$email') > 0 then 'email'
end
from school_users
WHERE username = '$username' or email = '$email'") or die(mysql_error());
我需要的「用戶名」或「電子郵件」或「both」時,它的存在。我如何接收這些變量?
你檢查http://php.net/mysql_query? – zerkms 2013-02-10 21:15:45
您不應該使用'mysql_query'函數,因爲它已被棄用。改爲使用'mysqli_query'。 – Luka 2013-02-10 21:17:46
這可能是他的另一個問題的延續:http://stackoverflow.com/questions/14800674/how-would-i-stop-multiple-emails-or-username。我想你在這裏提問之前需要學習一點研究。 – 2013-02-10 21:28:06