Just to let you know, forms have something called "method" which could be a "post" or "get". The primary difference between th two is mostly for security. When the method is "get", and the submit button is clicked, then the url shows all the parameters of the form in clear text as part of the url. However, in a "post", it does not show, so one would mostly use this method for transmitting passwords which when submitted, does not show up as part of the url.
Thanks for the advice, but I have been pulling my hair apart to get the GET with form paramters working. | [reply] |