Hi all
I have the script below that uploads a picture onto my server.
if ($file1_name != "") {
mkdir ("imguploads/$time", 0777);
chmod("imguploads/$time",0777);
copy("$file1", "imguploads/$time/$file1_name");
$pic = $url."/imguploads/".$time."/".$file1_name;
}
How can this be modfied so that 6 images can be uploaded but kept in the same folder with a date stamp? I have been trying this for hours and its doing my head in so please please help.
Aaron