Hello guys
I have some problem with the submit button.
I'm writing a code that can log in to another site.
An on that site, the submit button is some thing like this
<label>Email:</label>
<input type="text" name="login_email" value="" />
</span>
<span>
<label>Password:</label>
<input type="password" name="login_password" value="" />
<input type="image" name="submit" src="/image/_compiled/btn_login.gif" style="vertical-align: bottom" onClick="return SubmitFormAction('login.php');" />
<br />
<label> </label>
<div id="forgotPass"><img src="/image/_compiled/red_arrow.gif" /> <a href="loginLostPassword.php">Forgot your password?</a></div>
and in my code, the postfield is like this:
$POSTFIELDS='form_cache_buster='.$form_cache_buster.'&login_email=xxxxx@gmai.com&login_password=xxxx&submit=??????';
What is the value that I have to use for submit???
Sorry for my bad English.
Thank you