Merhaba Mehmet YAYLA, Am 2012-01-26 15:10:34, hacktest Du folgendes herunter: > I'm using code this bellow.
...with an error!
> <form enctype="multipart/form-data" action="upload_file.php?upload=1"
> method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="30000" />
> Select image: <input name="userfile" type="file"/>
> <input type="submit" value="Upload" />
You can not use
action="upload_file.php?upload=1"
together with
method="post"
and you have to use
<form enctype="multipart/form-data" action="upload_file.php method="post">
<input type="hidden" name="MAX_FILE_SIZE" value="30000" />
<input type="hidden" name="upload" value="1" />
Thanks, Greetings and nice Day/Evening
Michelle Konzack
--
##################### Debian GNU/Linux Consultant ######################
Development of Intranet and Embedded Systems with Debian GNU/Linux
Internet Service Provider, Cloud Computing
<http://www.itsystems.tamay-dogan.net/>
itsystems@tdnet Jabber [email protected]
Owner Michelle Konzack
Gewerbe Strasse 3 Tel office: +49-176-86004575
77694 Kehl Tel mobil: +49-177-9351947
Germany Tel mobil: +33-6-61925193 (France)
USt-ID: DE 278 049 239
Linux-User #280138 with the Linux Counter, http://counter.li.org/
signature.pgp
Description: Digital signature

