I've searched and searched forums for about 2 hours and still can't find the answer to my question. Some are close but not quite what I need.
I have a form which submits data using method="GET"
This of course appends the form keywords and values to the end of the URL. Now I know GET isn't secure, but I don't really care about security. I just don't want my users to see the password they just typed in in the URL. An illusion of security is all I need. The site doesn't provide content that needs to be secure, so no big deal.
First of all don't say use POST, that was one fo the first things i tried, and I got the lovely message that my server doesn't support POST data. I know....very strange, but never-the-less that's the way things are.
Is there a way to take the data that was entered on the form and when the submit button is hit, encrypt or hide the data so that it doesn't appear in the URL?
Thanks for any help on this. I'm thinking it isn't possible, but someone please prove me wrong.