i am trying to cretae a php program to fill in a remote form (two fields; username and password) automatically, and then click the submit button automatically. here is the source code for the remote form:
<form name="form1" action="http://freesms.breathe.com/sms/v1/prologin.php" method="post">
<table cellspacing="0" cellpadding="0" width="220" border="0" align="center">
<tr>
<td class="maincontent" width="170">phone number</td>
<td align="left"><input name="phonenumber" size="15"></td>
</tr>
<tr>
<td class="maincontent" width="170">password</td>
<td align="left"><input type="password" name="password" size="15"></td>
</tr>
<tr>
<td width="170"></td>
<td><input type="submit" value="login" name="submit"></td>
</tr>
</table>
lets say the password = dave and username = hello
how can i do this?
thankyou


LinkBack URL
About LinkBacks



Reply With Quote
Bookmarks