[PHP] HTTP_POST_FILES not working with 4.1.0?

2001-12-19 Thread Ron Dyck
Having trouble with HTTP_POST_FILES not working under 4.1.0. Track vars is enabled, and HTTP_POST_VARS works fine. Anyone experiencing simular problems? === Ron Dyck WebbTech www.WebbTech.net [EMAIL PROTECTED] 905 734-1164 -- PHP General

Re: [PHP] HTTP_POST_FILES not working with 4.1.0?

2001-12-19 Thread Andrey Hristov
Try $_FILES array, if it works that means that register_globals is off. Regards, Andrey - Original Message - From: Ron Dyck [EMAIL PROTECTED] To: PHPList [EMAIL PROTECTED] Sent: Wednesday, December 19, 2001 4:41 PM Subject: [PHP] HTTP_POST_FILES not working with 4.1.0? Having

RE: [PHP] HTTP_POST_FILES not working with 4.1.0?

2001-12-19 Thread Richard Heyes
Try $_FILES array, if it works that means that register_globals is off. $HTTP_POST_FILES is present with either setting of register_globals, and fwiw is working fine here with 4.1.0. Bear in mind that you still need to global it if inside a function, whereas with $_FILES you don't - it's a