WordPress : wpdb – update SQL
Comment mettre à jour des informations en bdd (update), sur le CMS WordPress. Nous allons utiliser $wpdb pour effectuer une update d’une table.
global $wpdb;
// update
$r = $wpdb->update(
"table",
// SET (valeur)
array(
'NOM' => $_POST['nom']
),
// WHERE (valeur)
array(
'ID_CLIENT' => $_POST['idClient']
),
// SET (type)
array(
'%d'
),
// WHERE (type)
array(
'%d'
)
);
// verifier la maj
if( $r == 1 ){
// ok
}else{
// pas ok
}