hi, There is a login button on a website that i need to know how to click, i know how to put text in the textboxes but couldnt figure out how to click the button. heres the source:
PHP Code:
<html>
<
head>
<
title>Login</title>
</
head>
<
body bgcolor="#697d65">
<
link REL="stylesheet" TYPE="text/css" HREF="../style.css"><p ID="text_r" align="center">
        <
link REL="stylesheet" TYPE="text/css" HREF="../style.css">
        
        <!-- 
This is the first screen when a user sees when he is not logged in -->
        <
form action="/login/login.php" method="post"><input type="hidden" name="PHPSESSID" value="8d342904c976e03d62824cc588f1d7e8" />
        <
table align="center" border="0" cellspacing="0" cellpadding="0" width="135" bgcolor="#697d65">
        <
tr><td><span ID="text_r">Username:<br>

        <
input type="text" name="uname" maxlength="40" ID="textbox"><br>
        
Password:</span><br>
        <
input type="password" name="passwd" maxlength="50" ID="textbox">
        </
td></tr>
        <
tr><td colspan="2" align="right">
        <
input type="submit" name="submit" value="Login">&nbsp;
        </
td></tr>
        </
table>

        </
form>

        <
p align="center"><a href="../faq.html?PHPSESSID=8d342904c976e03d62824cc588f1d7e8" target="mainframe">Player's Guide</a></p>

</body>
</html>