Hi,

Thursday, July 25, 2002, 10:39:08 AM, you wrote:
R> Hi all,

R> Thought I turned on register_globals on in the php.ini, my server didn't know the 
HTTP_POST_FILES.

R> echo $HTTP_POST_FILES[$file]['type'] ;

R> echo $HTTP_POST_FILES[$file]['name'] ;

R> echo $HTTP_POST_FILES[$file]['size'] ;

R> I've always get these messages:

R> PHP Warning: Undefined variable: HTTP_POST_FILES in 
c:\inetpub\wwwroot\ohabolana\scripts\sary_vaovao.inc on line 4 PHP Warning: Undefined 
variable: HTTP_POST_FILES in
R> c:\inetpub\wwwroot\ohabolana\scripts\sary_vaovao.inc on line 5 PHP Warning: 
Undefined variable: HTTP_POST_FILES in 
c:\inetpub\wwwroot\ohabolana\scripts\sary_vaovao.inc on line 6 

R> Any suggestions ?

R> Ravelomanana Rija
R> [EMAIL PROTECTED]
R> BP 1528 Port Vila
R> Vanuatu

If they are being used in a function you will need to do:
function whatever(){
global $HTTP_POST_VARS;
.
.
.
}

Just a guess :)


-- 
Best regards,
Tom


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

Reply via email to