我想在我的php頁面中執行SQL請求。
目前,代碼如下:PHP中的SQL請求頁面
$activiteitname = mysql_query("SELECT titel FROM tblLeidingAgenda WHERE id='{$_POST['id']}'");
$message = 'Herinnering!';
mail('[email protected]', 'Reminder: '.$activiteitname.'', $message);
但在執行中,我得到一個Resource id #15
錯誤...
'mysql_query'返回一個處理程序,你應該使用一個函數來獲取結果。 –
您應該學習如何在PHP中使用MySQL並添加一些關於防止SQL注入的文檔。 – Floern
你的代碼容易受到[SQL注入攻擊](http://en.wikipedia.org/wiki/SQL_injection) –