我使用時間戳記updateTag列創建digiCardPass。 我嘗試:如何選擇MAX(updateTag)
$query1 = mysql_query("select MAX(updateTag) as updateTag from digiCardPass");
$row1 = mysql_fetch_array($query1);
$updateTag = $row1['updateTag'];
error_log("max updateTag:",$updateTag,0);
但我不能在php_error.log得到這個錯誤:
[03月 - 2013 12時46分06秒亞洲/金邊] PHP的通知:非形成良好在 /Applications/MAMP/htdocs/passesWebserver/createPass/index.php遇到上線 數值 42 [03月 - 2013 12時46分06秒亞洲/金邊]最大updateTag:
//line 42: error_log("max updateTag:",$updateTag,0);
如何解決這個問題?
哪條線是42寫
$updateTag
內容? – zerkms 2013-05-03 05:55:55你有沒有試過回顯'$ updateTag'?它給了什麼。 – 2013-05-03 05:58:10
我只是編輯我的問題,你可以看看! – malinchhan 2013-05-03 06:15:20