|
|
HTML Code |
1 2 3 |
<form action="seite.php" method="post"> <input type="text" name="name" value="variable"> </form> |
|
|
Bash |
1 |
wget --post-data 'user=foo&password=bar' -O - http://www.web.de |
|
|
Bash |
1 |
|
|
|
Bash |
1 |
wget --post-data 'user=foo&password=bar' http://www.web.de |
|
|
Bash |
1 |
wget -O - --post-data 'user=foo&password=bar' http://www.web.de |
|
|
Bash |
1 |
wget -O - --post-data 'action=bla&action2=123' http://root2.fhgw.de:55/test.php |