Marek Kilimajer wrote:
John Nichel wrote:

Sure it is. Change the method of the form from a 'post' to a 'get'

<FORM action="mypage.php?para1=val1&para2=val2" method="get">


Get variables in action URL don't work with get method, at least in Mozilla.



Right, my bad. He'd have to move them into hidden fields to be in the URL query string....


<FORM action="mypage.php?para1=val1&para2=val2" 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