oops j'ai oublié de push
This commit is contained in:
parent
4f41366010
commit
fed88a764b
15 changed files with 130 additions and 35 deletions
|
|
@ -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();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue