<form enctype="multipart/form-data" action="upload.php" method="post"> <input type="text" name="heslo" size="16" maxlength="16" value=""/> <input type="file" name="obrazok" value="" /> <input type="submit" name="nahrat" value="Poslať" /> </form>
Na disku mam nejaky obrazok, heslo je napr. "heslo", potreboval by som odoslat ten formular, vobec neviem ako na to, vdaka. Je to pravidelne automaticke uploadovanie dat na www server.
wget --post-data="heslo=jablko" --post-file="sample.jpg" http://localhost/index.html
jednoduchsie by to malo byt vraj pomocou
curl
takze nejak taktocurl --request=POST -F "heslo=heslo;nahrat=Poslat;file=@/cesta/k/suboru" "http://server/upload.php"
otestuj a daj vediet ;-)
funguje to, vdaka :)