any body know how to extract form variables from an html page
for example if a code is like
<form action="test.php" method="post">
<input type="text" name="username">
<input type="text" name="passwd">
</form>
the script should output the names of variables
output:
username
passwd