science-ation/db/db.update.155.php

21 lines
522 B
PHP
Raw Normal View History

<?
function db_update_155_post()
{
global $pdo;
// we need to query the stuff from the table
$q = $pdo->prepare('SELECT * FROM emails');
$q->execute();
while ($r = $q->fetch(PDO::FETCH_OBJ)) {
echo "Updating email id $r->id\n";
$stmt = $pdo->prepare("UPDATE emails SET
2025-02-09 17:24:37 +00:00
body=?,
bodyhtml=?,
subject=?
WHERE id='$r->id'");
2025-02-09 17:24:37 +00:00
$stmt->execute([iconv('ISO-8859-1', 'UTF-8//TRANSLIT', $r->body),iconv('ISO-8859-1', 'UTF-8//TRANSLIT', $r->bodyhtml),iconv('ISO-8859-1', 'UTF-8//TRANSLIT', $r->subject)]);
}
}
?>