|
Posted by Markus on 07/11/07 09:48
cadman@wits.end schrieb:
> Rather new to php, thought I had made great progress...but...
>
> My simple (so I thought) little $HTTP_POST_FILES item for uploading
> .jpgs (to a Unix/Apache server) worked GREAT in FireFox (my browser of
> choice) - but then trying it in IE it just flat out fails; doesn't
> upload the file, nor will it echo any error messages, so I can't even
> begin to try to chase this down. It's drivin' me nuts...ANY help
> appreciated, TIA & etc.
[...]
> <form method="POST" enctype="multipart/form-data"
> name="image_upload_form" action="<?$_SERVER["PHP_SELF"];?>">
There is no echo in the action attribute - so it will actually be
action="", if you look at the source code of the form page in your browser.
If you encounter different browser behaviours, it is always likely to
find the problem looking at the HTML rather than the PHP code!
HTH
Markus
[Back to original message]
|