> > Secondly for file uploads why are you not using the $_FILES[]
> > superglobal array?
> 
> I did not write the app, just trying to figure out why it stopped
> working after upgrading PHP. You think that's the problem?

Well try  ...

if (is_uploaded_file($_FILES['attach']['tmp_name'])) {
        // Blah Blah Blah
}

Rich 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to