I wondering how is the best way to hide parsed varibles
Example 1
I have a logon script wrote in HTML and it passes the username and password to logon.php
But, if you look at the address it shows up as http://www.???.com/logon.php?username=admin&password=test
is there anyway to hide the username and password
Thanks
This is actually an html thing. Make sure you have the method attribute of the form tag set to method="post", not method="get". If the form parameters are being attached to the query string, then the method is set to method="get".
P.
Additionally, to make sure you don't peeve off easily peeve-d off people, this post should've been in the coding forum. People'r picky about where you post ;o)