Hi Wilmar,
Check whether you have something similar:
You'll definetly need that for antything other than text/plain ones..
Here's a some code that works for me (uploading jpgs):
if ($_FILES["pix"]["size"] > 0){
if ($_FILES["pix"]["type"] == "image/jpeg"){
$pix_file = $
You know about the php.ini option "upload_max_filesize"? Perhaps its
default value is not enough for your task?
Greeting from
Keith
Aachen, Germany
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello guys
I'm trying to do a simple task: upload files. However, when I try to upload files
other than text/plain ones I get an empty $_FILES array. Is there anything I've got
to modify in my php.ini file? I'm just following the expample in the php manual, the
only thing different is that I
3 matches
Mail list logo