Timo Boettcher wrote:
<snip>
It will not work. One of the requirements of my app is that I can
place a bookmark on any page and return to it. That wouldn't work with
hidden fields, would it?
BTW, I am using http-post.

It will work. Change your form method from post to get, and drop your variables from the url string down to hidden form variables. When you submit the form, all the variables will be in the url query string.


<FORM action="mypage.php" method="get">
<input type="hidden" name="para1" value="val1" />
<input type="hidden" name="para2" value="val2" />
.......
</form>

--
By-Tor.com
It's all about the Rush
http://www.by-tor.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to