There is a form:
<form id="1" action="file.php" method="POST">
<textarea type="text" name="stream" style="width:80%;" rows="7" cols="40"></textarea>
<br /><br /><br />
<br /><br />
<label for="number"><span style="font-size: 30pt;">number of results:</span></label>
<input type="text" name="number" style="width:70px; margin: 50pt; ">
<br />
<br /><br /><br />
<input type="submit" value="Submit form">
</form>
A user is supposed to enter value of both form elements: stream
, number
My objective is to automate the process by setting e.g. stream="test"
and number="5"
and then open file.php.
How can I accomplish that?