Hello,
On my first server, my banner upload worked. I used this to check details:
$thisfile =$HTTP_POST_FILES['userfile']['name'];
$thistype = $HTTP_POST_FILES['userfile']['type'];
$thissize =$HTTP_POST_FILES['userfile']['size'];
$thistemp =$HTTP_POST_FILES['userfile']['tmp_name'];
So upload2.php would return size and other info.
I just uploaded same exact code to new server and the above returns nothing! Is there a compile setting that MUSt be set? That is the only thing I can think of.
Thanks