実現したいことと困っていること
画像投稿機能付きの掲示板を作っています。
画像自体はサーバーへアップロードし、画像パスをDBに保存しています。
サーバーへの画像のアップロードと削除はできます。しかしDBにある画像パスが削除されません(なぜか拡張子だけが消えます)。
どのようにすればDBの画像パスが削除されるのか、ご教示頂けますと幸いです。
その他
・画像は「images」フォルダに保存しています。
・xamppを使用しています。
・sql文の「img_file」という箇所に画像パスが保存されます。
PHP
1//----------thread_change.php------------ 2<?php 3$thread_id = $_GET['thread_id']; 4 5$pdo = new pdo(DSN,DB_USER,DB_PASS); 6$select = $pdo->prepare("SELECT * FROM thread_data WHERE thread_id = :thread_id"); 7$select->bindParam(":thread_id", $thread_id); 8$select->execute(); 9 10?> 11 12<!doctype html> 13<html> 14<head> 15<meta charset="utf-8"> 16<meta name="viewport" content="width=device-width, initial-scale=0"> 17<title>掲示板-スレッドの内容を変更する</title> 18<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet"> 19<link href="css/base.css" rel="stylesheet" type="text/css"> 20<link href="css/common.css" rel="stylesheet" type="text/css"> 21<script src="js/jquery-3.4.1.min.js"></script> 22<script type="text/javascript" src="js/test.js"></script> 23</head> 24<body> 25 <main> 26 <h1>スレッドの内容を変更する</h1> 27 <div class="btn_block"> 28 <a class="btn" href="index.php">トップページに戻る</a> 29 <a class="btn" href="thread.php?thread_id=<?php echo $thread_id ?>">前のページに戻る</a> 30 </div><!--/.btn_block --> 31 <section class="program_wrapper"> 32 <form method="post" action="thread_change_done.php" enctype="multipart/form-data"> 33 <?php foreach($select as $s) : ?> 34 <p>スレッド作成者</p> 35 <input type="text" name="thread_author" value="<?php echo h($s['thread_author']) ?>"> 36 <p>スレッドタイトル</p> 37 <input type="text" name="thread_title" value="<?php echo h($s['thread_title']) ?>"> 38 <p>スレッドの内容</p> 39 <textarea name="thread_contents"><?php echo h($s['thread_contents']) ?></textarea> 40 <p>添付されている画像</p> 41 <p class="delete_img"> 42 <a class="link" href="images/<?php echo $s['img_file'] ?>" target="_blank"><?php echo h($s['img_file']) ?></a> 43 <label><input type="checkbox" name="delete_img" value="<?php echo 'images/' . $s['img_file'] ?>">削除する</label> 44 </p><!--/.delete_img --> 45 <p>画像を投稿する</p> 46 <p style="padding-bottom: 40px;"><input type="file" name="img_file"></p> 47 <?php endforeach; ?> 48 <input type="submit" value="スレッドの内容を変更する"> 49 <input type="hidden" name="thread_id" value="<?php echo $thread_id ?>"> 50 </form> 51 </section><!--/.program_wrapper --> 52</main> 53<script type="text/javascript" src="js/test2.js"></script> 54</body> 55</html> 56
PHP
1//----------thread_change_done.php------------ 2<?php 3$pdo = new pdo(DSN,DB_USER,DB_PASS); 4 5$thread_id = $_POST['thread_id']; 6$thread_author = $_POST['thread_author']; 7$thread_title = $_POST['thread_title']; 8$thread_contents = $_POST['thread_title']; 9date_default_timezone_set('Asia/Tokyo'); 10$created_at = date('Y/m/d H:i:s'); 11 12$delete_img; 13if(!empty($_POST['delete_img'])){ 14 $delete_img = $_POST['delete_img']; 15 chmod($delete_img, 0750); 16 if(file_exists($delete_img)){ 17 unlink($delete_img); 18 } 19 echo $delete_img; 20} 21$img_file; 22$file; 23if(!empty($_FILES['img_file'])){ 24 $img_file = uniqid(mt_rand(), true); //ファイル名をユニーク化 25 $extension = substr(strrchr($_FILES['img_file']['name'], '.'), 1); //拡張子を取得 26 $img_file .= '.' . $extension; 27 if(!empty($_FILES['img_file']['name'])){ 28 $file = "images/$img_file"; 29 if($extension == "jpg" || $extension == "png" || $extension == "gif"){ 30 move_uploaded_file($_FILES['img_file']['tmp_name'], './images/' . $img_file); 31 }else{ 32 header('Location:thread_add.php'); 33 exit(); 34 } 35 } 36} 37 38 $regist = $pdo->prepare("UPDATE thread_data SET thread_title = :thread_title, thread_author = :thread_author, thread_contents = :thread_contents, 39 created_at = :created_at, img_file = :img_file WHERE thread_id = :thread_id"); 40 $regist->bindParam(":thread_title", $thread_title); 41 $regist->bindParam(":thread_author", $thread_author); 42 $regist->bindParam(":thread_contents", $thread_contents); 43 $regist->bindParam(":created_at", $created_at); 44 $regist->bindParam(":img_file", $img_file); 45 $regist->bindParam(":thread_id", $thread_id); 46 $regist->execute(); 47 header('Location:thread.php?thread_id=' . $thread_id); 48 exit(); 49?>
よろしくお願い致します。
回答1件
あなたの回答
tips
プレビュー