我似乎無法獲得此代碼的工作。你可以使用foreach行來運行另一個查詢嗎?這是一個cron腳本,將發送電子郵件,當cron運行時我需要將狀態從'0'更新爲'1',因此我知道電子郵件已發送 - 代碼爲下面的UPDATE查詢不起作用。FOREACH和UPDATE mysql不能一起工作
// Connect to the database
$conn = new PDO("mysql:host=$DB_HOST;dbname=$DB_DATABASE",$DB_USER,$DB_PASSWORD);
// Get the emails to send and ensure the status shows they have not been sent already
$stmt = $conn->prepare("SELECT id, userid, title, message FROM reminders WHERE time=CURDATE() AND status='0'");
$stmt->execute();
$results = $stmt->fetchAll(PDO::FETCH_ASSOC);
foreach($results AS $row){
echo $row['title'] . ' ' . $row['message'] . ' ' . $row['id'] . '<br />';
$update = $conn->prepare("UPDATE results SET status='1' WHERE id=:id");
$update->bindParam(':id', $row['id']);
$update->execute();
};
編輯:表名是錯的。解決
這是否會拋出MySql錯誤或什麼? –
它顯示正確的行,但不更新狀態列。沒有錯誤顯示 – cantaffordretail
嘗試刪除從狀態='1'到狀態= 1.status的引號可能是一個int列我猜。 –