質問編集履歴

1

質問内容修正

2019/12/16 17:32

投稿

dog50
dog50

スコア26

test CHANGED
File without changes
test CHANGED
@@ -14,19 +14,19 @@
14
14
 
15
15
  $stmt = $this->db->prepare($sqlUpdate);
16
16
 
17
- $stmt->bindValue(":id", $admin->getId(), PDO::PARAM_INT);
17
+ $stmt->bindValue(":id", $user->getId(), PDO::PARAM_INT);
18
18
 
19
- $stmt->bindValue(":login_id", $admin->getloginId(), PDO::PARAM_STR);
19
+ $stmt->bindValue(":login_id", $user->getloginId(), PDO::PARAM_STR);
20
20
 
21
- $stmt->bindValue(":name", $admin->getAdName(), PDO::PARAM_STR);
21
+ $stmt->bindValue(":name", $user->getAdName(), PDO::PARAM_STR);
22
22
 
23
- $stmt->bindValue(":password", $admin->getpassword(), PDO::PARAM_STR);
23
+ $stmt->bindValue(":password", $user->getpassword(), PDO::PARAM_STR);
24
24
 
25
25
  $stmt->bindValue(":updated_at", $updated_at, PDO::PARAM_STR);
26
26
 
27
- $stmt->bindValue(":auth", $admin->getauth(), PDO::PARAM_INT);
27
+ $stmt->bindValue(":auth", $user->getauth(), PDO::PARAM_INT);
28
28
 
29
- $stmt->bindValue(":status", $admin->getstatus(), PDO::PARAM_INT);
29
+ $stmt->bindValue(":status", $user->getstatus(), PDO::PARAM_INT);
30
30
 
31
31
 
32
32