View Single Post
(#2 (permalink))
Old
kei's Avatar
kei kei is offline
Senior Member
kei is an unknown quantity at this point
 
Posts: 237
Join Date: Jun 2010
Default 09-17-2010, 11:23 PM

fix'd myself :3,
as far as i can tell/think this should work in most cases.
PHP Code:
foreach ($_FILES as $file){
    if(
count(explode("."strtolower($file['name']))) > ){
        die(
'what are you trying to pull?. cant upload double extensions.');
    }
    if (!(
in_array(end(explode("."strtolower($file["name"]))), $filetypes))){
        die(
$file["name"] . " is not uploadible");
    }

________
GLASS PIPE SET

Last edited by kei; 08-30-2011 at 06:07 AM.
Reply With Quote