Skip to content

Instantly share code, notes, and snippets.

@abacha
Created April 3, 2010 00:46
Show Gist options
  • Save abacha/353924 to your computer and use it in GitHub Desktop.
Save abacha/353924 to your computer and use it in GitHub Desktop.
<?
if (!empty($_FILES)) {
$tempFile = $_FILES['Filedata']['tmp_name'];
$targetPath = $_SERVER['DOCUMENT_ROOT'] . $_REQUEST['folder'] . '/';
$targetFile = str_replace('//','/',$targetPath) . $_FILES['Filedata']['name'];
$fileTypes = str_replace('*.','',$_REQUEST['fileext']);
$fileTypes = str_replace(';','|',$fileTypes);
$typesArray = split('\|',$fileTypes);
$fileParts = pathinfo($_FILES['Filedata']['name']);
if (in_array($fileParts['extension'],$typesArray)) { // Uncomment the following line if you want to make the directory if it doesn't exist
mkdir(str_replace('//','/',$targetPath), 0755, true);
move_uploaded_file($tempFile,$targetFile);
echo "1";
}
else { echo 'Invalid file type.'; }
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment