On Tue, 2011-08-02 at 10:04 -0500, Donovan Brooke wrote:
> Hello!,
> 
> I must not be understanding something as I would expect 'f_file'
> to show up in the print_r below.:
> 
> ---form--
> <form action="index.php" method="post" enctype="multipart/form-data">
>    <input type="hidden" name="f_ap" value="upload" />
>    <input type="hidden" name="f_action" value="doit" />
>    <input type="file"  name="f_file" />
>    <input type="submit" value="Upload" />
> </form>
> ---endform--
> 
> --index.php--
> <?php print_r($_POST); ?>
> --/index.php--
> 
> 
> 
> 
> The result I get is:
> ------------
> Array
> (
>      [f_ap] => upload
>      [f_action] => doit
> )
> -----------
> 
> Can someone enlighten me?
> 
> Thanks,
> Donovan

 try print_r($_FILE)  (i think, it's either FILE or FILES)

Steve.



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

Reply via email to