make a form, one "delete"-button and put a checkbox before every file. the
checkbox's name is 'delete_file['.$filename.']' ... wehen pressed delete
open a file which foreach's every entry in delete_file and unlink it. but be
careful - this could be a huge security-hole ...

 + stefan

"Nautilis" <[EMAIL PROTECTED]> schrieb im Newsbeitrag
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hi everybody,
>
> I show a list of files that I upload to the user's folder using the next
> code:
>
>         $path= "../clients/$user";
>         $dir = opendir ($root);
>         while ($archivo = readdir ($dir))
>        {
>         $size = filesize("$path/$filename");
>         $size = ($size/1024);
>         $size = intval($size * 100 ) / 100;
>         if ($filename!= "." && $filename!="..")
>             {
>             echo "<tr><td><a
> href='$path/$filename'>$filename</a></td><td>$size Kb</td></tr>";
>             }
>         }
>
> I want to add a checkbox in every file i get in the user's folder. My
> question is:
>
> Is there any way to use some kind of function to delete selected files? I
am
> not sure if i can use javascript to evaluate which is checked and how. And
> after that evaluation, how to call a unlink ($filename) to delete the
files.
>
> Any help would be greatly appreciated.
>
> Nau
>
>
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to