Oppure

Loading
27/12/06 21:24
cyber
Come si fa il metodo post cioè inviare che so

"User=cyber&password=cyber" ad un indirizzo per esempio Pierotofy?
aaa
28/12/06 12:35
Il Totem
Postato originariamente da cyber:

Come si fa il metodo post cioè inviare che so

"User=cyber&password=cyber" ad un indirizzo per esempio Pierotofy?


Usi l'html:
<form name='log' action='...' method='POST'>
<input type='hidden' name='user' value='...'>
<input type='hidden' name='pass' value='...'>
<input type='submit'></form>

E fai premere il pulsante in un web browser, oppure:
<body onload='log.submit()'
aaa