現在アップロードされているファイルを削除する削除機能を実装したいと思います。
現在アップロードされているファイルを取得するにはどうすればよいですか?
これが私のjavascriptにあるものです:
$('.deleteButton').click(function (){
$imagefile = '../uploads/cv.jpg';
//Make ajax call
$.ajax({
type: "POST",
data:{
action: 'deleteButton',
imagefile: $imagefile,
},
url: "php/deleteImage.php"
});
});
私のPHPファイル:
<?php
if($_POST["action"]=="deleteButton") {
$imagefile = $_REQUEST['imagefile'];
unlink($imagefile);
}
?>
ここで、$imagefile に静的な値を設定する代わりに、アップロードされたファイルを取得します。