oops j'ai oublié de push

This commit is contained in:
Yasder5 2026-02-23 19:43:44 +01:00
parent 4f41366010
commit fed88a764b
15 changed files with 130 additions and 35 deletions

View file

@ -79,7 +79,8 @@
user_phone = :phone,
user_work = :work,
user_location = :location,
user_description = :description
user_description = :description,
user_image = :image
WHERE user_id = :id";
@ -94,6 +95,7 @@
$rqPrep->bindValue(':work', $objUser->getWork() ?? "", PDO::PARAM_STR);
$rqPrep->bindValue(':location', $objUser->getLocation() ?? "", PDO::PARAM_STR);
$rqPrep->bindValue(':description', $objUser->getDescription() ?? "", PDO::PARAM_STR);
$rqPrep->bindValue(':image', $objUser->getImage() ?? "", PDO::PARAM_STR);
return $rqPrep->execute();