File Directory Php

upload directory. You can set those file extensions that are allowed to be uploaded.
config1.php
$root="c:/romel/cuzon/"; //specify the directory you want to upload the files
$ext=array('jpg','gif','png','html','htm','jar','class','zip','mpg','mpeg','js','css','doc','txt');//allow to upload having this extension.
if (!is_dir($root))
{
$subdircount=substr_count("$root","/");
$rtext=explode("/",$root);
for ($i=0;$i<=intval($subdircount-1);$i++)
{
$rt.=$rtext[$i]."/";
if (!is_dir($rt))
{
mkdir($rt,0700);
}
}
}
?>
uploadir1.php
if(isset($HTTP_POST_VARS["submit"]))
{//3
switch($HTTP_POST_VARS["submit"])
{//4
case ("Upload"):
{//5
echo"

Easy Upload


Move new file to a new directory to this simple upload tool. Click on Browse.. to select file, then clickUpload file.
(The total upload file can be up to 2MB)











";
echo"

Number of files to upload:



";
}//5
break;
case("Display"):
{//5
echo"

Easy Upload

Move new file to a new directory with this simple upload tool. Click on Browse.. to select file, then click Upload File.
(The total upload can be up to 2MB)



";
for ($n=1;$n<=$numfiles;$n++)
{//6
echo "
";
} //6
echo"





";
echo"

Number of files to Upload:



";
}//5
break;
case("Upload File"):
{
include("config1.php");
for($n=1;$n<=$numfiles;$n++)
{
if(${"file".$n})
{
$dest=$root.${"file".$n."_name"};
for ($i=3;$i<=5;$i++)
{
if(in_array(strtolower(substr(${"file".$n."_name"},-$i)),$ext))
{
if(!copy(${"file".$n},$dest))
{
echo"Unable to create $dest - check permission
\n";
exit;
}}}}}
}
}
}
else
{
echo"

Easy Upload


Move new file to a new directory to this simple upload tool. Click on Browse.. to select file, then clickUpload file.
(The total upload file can be up to 2MB)











";
echo"

Number of files to upload:



";
}
?>