Re: [PHP] File Upload Strangeness

2001-02-27 Thread Chris Lee
you will find some browsers dont work like they should, opera doesnt seem to like my uploads. ?php include_once('database.egn'); include_once('time.egn'); if ($db_file != 'none' AND $db_file AND is_uploaded_file($db_file) AND filesize($db_file)) { $db_file =

RE: [PHP] File Upload Strangeness

2001-02-27 Thread Jason Murray
form method=post enctype='multipart/form-data' action='$PHP_SELF' input type=file name=db_file input type=submit /form Don't you need a MAX_FILE_SIZE for this to work properly? Jason -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

[PHP] File Upload Strangeness

2001-02-26 Thread Jason Murray
Hi there, We are currently using 3.0.16 (I know :(). I have a form action pointing to $PHP_SELF. After submitting the form information, $userfile contains what I expect in $userfile_name. I have had all sorts of troubles with file uploads lately, but eventually they start working. Not this