The relevent PHP code from my system for the checking is:
if ($type != "image/jpeg") { $ReturnSaying = "!! The file is not a JPEG picture. Please try again"; include("photo_error.php"); exit;
where is the variable $type comming from?
Hi Curt,
It's coming from the following:
$type = $_FILES['FormPhotoName']['type']; $tmp_name = $_FILES['FormPhotoName']['tmp_name']; $error = $_FILES['FormPhotoName']['error'];
Essentially, this system works, it just doesn't work at a particular location.
I am thinking that the location has a proxy set up that's messing with the http upload.
Thanks for any help, John -- =========================== John T. Beresford, Owner Digital Studio Design Edmond, OK http://www.digitalstudiodesign.com/ 405.760.0794
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php