回答編集履歴

1

誤字の修正

2021/11/19 03:34

投稿

whyyasai
whyyasai

スコア3

test CHANGED
@@ -1,21 +1 @@
1
- $stmt=$db->prepare('INSERT INTO posts(title, file_name, file_path, message, member_id, reply_post_id, created) VALUES(:title, :file_name, :file_path, :message, :member_id, :reply_post_id, NOW())');
2
-
3
- if(!isset($_GET['res'])){
4
-
5
- $stmt->bindValue(':title', $_POST['title'], PDO::PARAM_STR);
6
-
7
- $stmt->bindValue(':file_name', $filename, PDO::PARAM_STR);
8
-
9
- $stmt->bindValue(':file_path', $save_filename, PDO::PARAM_STR);
10
-
11
- $stmt->bindValue(':message', $_POST['message'], PDO::PARAM_STR);
12
-
13
- $stmt->bindValue(':member_id', $member['id'], );
14
-
15
- $stmt->bindValue(':reply_post_id', 0);
16
-
17
- $stmt->execute();
18
-
19
-
20
-
21
1
  INSERT文をこの書き方にすると、画像データがDBにも保存されるようになりました。