--CURRENTLY TESTING ANDREW'S POST--
In my case $username = Red Blaze. And that Directory does exist.
I tested it like this:
Code:
if ($HTTP_POST_FILES['file1']['size'] <= 0)
{
print "<b>File Not Saved</b><BR>";
print "Because your file was over 2 MB, it wasn't recieved.<br>";
}
else
{
$tempFile = $HTTP_POST_FILES['file1']['tmp_name'];
$destination = "/****/*******/public_html/photos/$username/" .
$HTTP_POST_FILES['file1']['name'];
copy($tempFile, $destination);
print "<b>Your File has been accepted</b><br>";
}
That's without the looping. It only uploaded the file that came from form "file1". I don't really want to add the block of code 10 times (which is the limit of uploading forms, btw). The forms are using the same looping function.
Code:
This is the code in the uploading forms page.
<?php
$times = $_POST['times'];
for ($counter = 1; $counter < $times + 1; $counter++)
{
print "<tr>
<td align=\"right\">File $counter</td>
<td><input name=\"file$counter\" type=\"file\" id=\"file$counter\" /></td>
</tr>";
}
?>