Question
URL parameter
I have to use get method (instead of post) for form action but dont want to show the url parameter in the action page url.
Anyway to hide or encrypt a form input value after it goes into my database?
Anyway to hide or encrypt a form input value after it goes into my database?
Code:
<form action="actionpage.cfm" method="get"> <input type="text" name="myValue"> <input type="submit" name="submit"> </form>
