我試圖從表中添加了一些記錄,但是,它不能正常工作,即當我嘗試的var_dump看到什麼值顯示我只是得到string(0) ""
Mysql的總和不工作
這裏是代碼
$current_wealth1 = mysql_query("SELECT SUM(estimated_wealth) as total_house_wealth FROM user_houses WHERE user_id='$user_id'");
var_dump($total_house_wealth);
$current_wealth = $ved_balance + $total_house_wealth;
就輸出而言,我只是使用傳統的PHP打印輸出$ current_wealth。
任何想法,可能是什麼問題?
編輯:這裏是我當前的代碼,得到一個語法錯誤,第二行
$current_wealth1 = mysql_query("SELECT SUM(estimated_wealth) as total_house_wealth FROM user_houses WHERE user_id='$user_id'");
$total_house_wealth = mysql_fetch_array($current_wealth1)[0];
$current_wealth = $ved_balance + $total_house_wealth;
函數mysql_query不能像那樣工作。只需閱讀說明書,並採取關於pdo/msqli紅色提示心臟:http://php.net/manual/en/function.mysql-query.php – Nanne