WordPress : prepare update
Comment effectuer un update en utilisation un « prepare » :
global $wpdb;
$tbl_maj = array(
$_POST['email'],
$_POST['nom'],
$_POST['idClient']
);
$sql = $wpdb->prepare("
UPDATE table_xxx
SET
EMAIL=%s,
NOM=%s
WHERE ID_CLIENT=%d"
);
$r = $wpdb->query($sql);
Cela vous permettra d’effectuer un update sql.
Ici sur la table « table_xxx », nous allons mettre à jour un email et un nom sur un id de client.