I have several files I am uploading at once ... I have a do-while statement that will upload each file ... but I dont know how to make the following line work in the do-while statement...
$fileonserver = $pathonserver . basename($_FILES['file$i']['name']);
it needs to show ...
$fileonserver = $pathonserver . basename($_FILES['file1']['name']); // when $i=1
... and so-on, for each value of i. How do I write out this line correctly, so it works in the do-while statement.
Jabbamonkey