Button to Delete file (unlink)
Posted: 12 Apr 2017, 11:49
I`m back again this time with an question for unlink
i lookt for 6 hours for an solution to delete pictures placed into this code
How can i make an button to delete pictures i cant find out ?
i lookt for 6 hours for an solution to delete pictures placed into this code
Code: Select all
<?php
$files = glob("../images/$users[email]/*.*");
for ($i=0; $i<count($files); $i++)
{
$num = $files[$i];
echo '<div class="col-xs-6 col-md-3">
<div class="thumbnail">
<a href="'.$num.'" rel="shadowbox"><img src="'.$num.'" class="img-responsive" style="width:200px;height:150px;"> </a>
<br>
<div class="caption">
<p>Code for Notice<br><input type="text" class="form-control" value="<img src='. str_replace("..","http://145.53.93.209/Comments/","$num").' class=img-responsive></img> "></p>
</div></div>
</div>
</div>';
}
?>