質問編集履歴
1
質問内容修正
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", $
|
17
|
+
$stmt->bindValue(":id", $user->getId(), PDO::PARAM_INT);
|
18
18
|
|
19
|
-
$stmt->bindValue(":login_id", $
|
19
|
+
$stmt->bindValue(":login_id", $user->getloginId(), PDO::PARAM_STR);
|
20
20
|
|
21
|
-
$stmt->bindValue(":name", $
|
21
|
+
$stmt->bindValue(":name", $user->getAdName(), PDO::PARAM_STR);
|
22
22
|
|
23
|
-
$stmt->bindValue(":password", $
|
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", $
|
27
|
+
$stmt->bindValue(":auth", $user->getauth(), PDO::PARAM_INT);
|
28
28
|
|
29
|
-
$stmt->bindValue(":status", $
|
29
|
+
$stmt->bindValue(":status", $user->getstatus(), PDO::PARAM_INT);
|
30
30
|
|
31
31
|
|
32
32
|
|