TalkPHP

TalkPHP (http://www.talkphp.com/forums.php)
-   General (http://www.talkphp.com/general/)
-   -   Unlimited File Uploads (http://www.talkphp.com/general/2239-unlimited-file-uploads.html)

Orc 02-13-2008 12:11 AM

Unlimited File Uploads
 
How would I allow for unlimited file uploads using forms?

TlcAndres 02-13-2008 01:14 AM

Just a rough guess

PHP Code:

<?php

foreach(array_keys($_FILES) as $key)
{
    
$dest $root '/uploads/' $_FILES[$key]['name'];
    
move_uploaded_file($_FILES[$key]['tmp_name'],$dest);
}


Orc 02-13-2008 01:15 AM

Thank you, I'll keep this in mind but I already figured it out using Javascript ( DOM )

WinSrev 02-14-2008 10:56 PM

You do realise that unlimited is impossible? and that someone might try and take advantage of the situation (e.g. hacker)

Orc 02-14-2008 10:57 PM

Quote:

Originally Posted by WinSrev (Post 10773)
You do realise that unlimited is impossible? and that someone might try and take advantage of the situation (e.g. hacker)

Yeah, I realize that, it's just what the person that requested it, wanted. xD I already figured it out using Javascript.


All times are GMT. The time now is 05:24 PM.

Powered by vBulletin® Version 3.6.8
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.1.0