Jump to content

PHP File Delete Function


The_Holy_One

Recommended Posts

Hi There, i print out through PHP a list of my Directory and all his content, beside every File and/or folder is one HTML Checkbox:

[code]
<form method="POST" action="filemanager.php" enctype="multipart/form-data">
    echo "<td><input type=\"checkbox\" name=\"".$list['name']."\"></td></tr>";
</form>
[/code]

okay that work's without problems, the value's will be saved in the $_POST Array, here an example if i select 2 files:

$_POST[*] : Array ( [test0_1_php] => on [Untitled-2_html] => on [btn_del] => Löschen )

[b]HERE THE PROBLEM:[/b]
I've selected "test0.1.php" and "Untitled-2.html" but my Array contains "test0_1_php" and "Untitled-2_html", where are the dot's ??? This wouldnt be a problem if i had only files with *.[3] - Form but i also have files like this: abc_def_.txt.txt --> abc_def__txt_txt, how can i work around this ?
Link to comment
https://forums.phpfreaks.com/topic/10447-php-file-delete-function/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.