我似乎无法让这段代码工作。您可以使用 foreach 行运行另一个查询吗?这是一个将发送电子邮件的 cron 脚本,我需要在 cron 运行时将状态从“0”更新为“1”,以便我知道电子邮件已发送 -下面的代码 UPDATE 查询不起作用。
// 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();
};
编辑:表名错误。解决了