Thanks all,

This is the correct script :

Function verify($file) {
GLOBAL $HTTP_POST_FILES ;
echo $HTTP_POST_FILES['file']['type'] ;

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

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

...

}

I forgot to put the GLOBAL in the front of the function. Now, my script work
well.



Ravelomanana Rija
[EMAIL PROTECTED]
BP 1528 Port Vila
Vanuatu
----- Original Message -----
From: "Tom Rogers" <[EMAIL PROTECTED]>
To: "Tom Rogers" <[EMAIL PROTECTED]>
Cc: "Rija" <[EMAIL PROTECTED]>; "PHP-General" <[EMAIL PROTECTED]>
Sent: Thursday, July 25, 2002 12:19 PM
Subject: Re[2]: [PHP] HTTP_POST_FILES undefined - What happen?


> Hi,
>
> Thursday, July 25, 2002, 11:15:33 AM, you wrote:
> TR> Hi,
>
> TR> 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
>
> TR> If they are being used in a function you will need to do:
> TR> function whatever(){
> TR> global $HTTP_POST_VARS;
> TR> .
> TR> .
> TR> .
> TR> }
>
> TR> Just a guess :)
>
>
> TR> --
> TR> Best regards,
> TR> Tom
>
>
>
> sorry that should have been
> global $HTTP_POST_FILES;
>
> --
> Best regards,
> Tom
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
>



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

Reply via email to