The_Holy_One Posted May 25, 2006 Share Posted May 25, 2006 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 ? Quote Link to comment https://forums.phpfreaks.com/topic/10447-php-file-delete-function/ Share on other sites More sharing options...
eves Posted May 26, 2006 Share Posted May 26, 2006 the problem probably lies on the part where you populate $list[]you might want to post that Quote Link to comment https://forums.phpfreaks.com/topic/10447-php-file-delete-function/#findComment-39065 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.