Re: $_FILES doesn't work but $_POST works

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Did you put the enctype="multipart/form-data" into the FORM tag?

What you describe matches not doing that.

On Wed, May 31, 2006 12:25 am, kartikay malhotra wrote:
> Hi All,
>
> I'm using Mbuni MMS gateway, which provides me the facility to upload
> .mms
> files.
>
> Now with my little exposure to PHP, to upload files (say from the
> browser),
> I use $_POST, namely:
>
> if($_FILES['userfile']['size'] > 0)
> {
>   $fileName = $_FILES['userfile']['name'];
>   $tmpName  = $_FILES['userfile']['tmp_name'];
> ...
> ...
> }
>
> However, with Mbuni MMS Gateway (which provides HTTP POST),  the above
> condition in if loop isn't satisfied. I think $_FILES isn't working.
> However
> the following code works:
>
> <?php
>
> $in='/usr/share/wallpapers/alien-night.jpg';
> $out='/tmp/alien.jpg';
>
> if(isset($_POST['userfile'])/* || $_FILES['userfile']['size'] > 0*/ )
> {
>
> $f=fopen($out,'a');
> echo "HELOOOOOOOOOOOOOOOOOOOO";
> copy($in, $out);
> }
>
> ?>
>
> This implies, $_POST works, and a file has been uploaded. I  however,
> do not
> know how to access it
>
> How to access the uploaded file, determine its size and save its
> contents in
> a database?
>
>
> Thanks in advance
> KM
>


-- 
Like Music?
http://l-i-e.com/artists.htm

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


[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux