The answer to this question is probably blindingly obvious, but is there any way of passing a variable from one script to another by clicking a hyperlink?
I currently have a self-processing page. I am wanting to pass a variable back to the script by clicking a hyperlink. One way is to use a GET query but I want to avoid GET because of security issues.
Another way to pass a variable from one script to another is by using POST variables, but these use a form whereas I want to use a hyperlink to send the variable, not a button in a form.
I have also tried to use session variables, but I can not figure out how to use a hyperlink to set the variable. At first I though that I could use some javascript to set the variable, but now I am thinking that this can not work.
Any suggestions?