Hi there, I'm new to php and I'm finding hard to learn this thing about using URL to "Interact" with the page.
I have this page with an log in form and I'd like to auto-log in using just the URL.
I've seen some people using [url]http://(...........)/login.php?username=(...)&submit=([/url]...) but I've searched the Internet and found no useful help about it. Sorry but i probably just don't know the right keywords to search for.
Here is the form code:
<form name="form_login" method="post" action="index_main.php">
<input type="text" name="client_number" maxlength="8" style="width:8em;">
<input type="password" name="client_password" maxlength="7" style="width:8em;">
<input type="submit" name="submit" style="background-color:#336699;color:#D8F3FA;font-family:Verdana, Arial, Helvetica, sans-serif;font-size:11px;border-color:#003366;border-style:inset;border-width:1px;width:8em;" value="Enviar Dados">
<input type="hidden" name="action" value="check_login">
</form>
My point is to use a script for an external program to "read" some values in the page, but it needs to log in before that.
I'd appreciate if anyone could point me any tutorial or anything helpful to this subject.
Thanks in advance,
VuDu