html5 — Как добавить удаление в php скрипт в моей фотогалерее

Я сделал Фотогалерею по php.
Я могу сделать загрузку изображения и показать список изображений. Но я хочу добавить кнопку удаления, где пользователи могут удалить ненужное изображение. Но мне не удалось добавить эту кнопку работы.

Кто-нибудь, пожалуйста, помогите исправить это?

Вот мой код на GitHub: https://github.com/sagar290/photo_gallerey/blob/6cad3743e735ea109723de7e14d5477bff1e964b/gallery.php

<?php

if (isset($_FILES["file"]["name"])) {
$name = $_FILES['file']['name'];
//$size = $_FILES['file']['size'];
//$extention = $type;
$type = strtolower($_FILES['file']['type']);
$tmp_name = $_FILES['file']['tmp_name'];


if (isset($name)) {
if (!empty($name)) {
if (($type=='image/jpg')||($type=='image/jpeg')||($type=='image/gif')) {
$location = 'photos/';

if(move_uploaded_file($tmp_name, 'photos/'.$name)) {
echo $name.' is uploaded';

}
}else {
echo 'file must be jpg or jpeg ';
}


}else {
echo 'please choose a file';
}
}
}

?>

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Photo gallery</title>

<style type="text/css">
ul {
list-style-type: none;
}
li {
float: left;
padding: 10px;
margin: 10px;
font: bold 10px Verdana, sans-serif;
}
img {
display: block;
border: 1px solid #333300;
margin-bottom: 5px;
}
</style>

</head>
<body>
<h2>Photo gallery</h2>

<form action="gallery.php" method="POST" enctype="multipart/form-data">
UPLOAD:
<input type="file" name="file"><br><br>
<input type="submit" value="submit">
</form>

<ul>
<form action="gallery.php" method="POST">
<?php


//define location of photo image
$photosDir = './photos';

//define which file extention are images
$photosExt = array('gif','jpg','jpeg','tif','tiff','bmp','png');

//initialize array to hold filenames of images found
$photoList = array();

//read directory contents
//build photo list
if (file_exists($photosDir)) {
$dp = opendir($photosDir) or die('Error: cannot open file');
while ($file =  readdir($dp)) {
if ($file != '.' && $file != '..') {
$fileData = pathinfo($file);
if (in_array($fileData['extension'], $photosExt)) {
$photoList[] = "$photosDir/$file"; // file includes as an array
}
}
}
closedir($dp);
}else {
die('ERROR: directory dosent exists');
}

//itarate over photo list
//display each image and file name
if (count($photoList)>0) {
for ($x=0; $x <count($photoList) ; $x++) {
?>

<li>
<input type="submit" name="delete" value="Delete">
<img src="<?php echo $photoList[$x]; ?>" height="150" width="200"/>
<?php echo basename($photoList[$x]); ?><br>
<?php echo round(filesize($photoList[$x])/1024) . 'KB'; ?>
</li>

<?php
}
} else {
die('ERROR: No image found');
}





?>

</form>
</ul>
</body>
</html>

1

Решение

привет, просто измени свой вход на:

<input type="submit" name="delete" value="<?php echo $photoList[$x] ?>">

а затем проверьте это значение:

<?php if(isset($_POST['delete']) && !empty($_POST['delete'])){
//find the file
$file = 'photos/'.$_POST['delete'];
if(is_file($file)){
unlink($file);
}else{
echo $_POST['delete']." has not been found!";
}
}?>
0

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]