Something like this, maybe?
<html>
<body>
<form method="get" action="http://site.com/index.php">
<input type="text" name=""><br>
<input type="hidden" name="more" value="whatever">
<input type="submit" value="Button-A">
</form>
<br>
<form method="get" action="http://site2.com/page.php">
<input type="hidden" name="" value="hello">
<input type="hidden" name="more" value="whatever">
<input type="submit" value="Button-B">
</form>
</body>
</html>
Note that using name="" is considered bad form, but if you change it to something like name="mytext" the URL you request will change to: "http://site.com/index.php?mytext=heybuddy?more=whatever"
|