Post Variables and Links

A

Anonymous

Guest
Sessions.

And for your future reference, in no way does using POST hide data from curious users.
 
Guess I will solve your problem over here.
Code:
<form name=form1 action=actionpage.php method=post>
<input type=hidden name='param1' value=val1>
</form>
<a href='link.php' onClick="javascript:document.form1.submit();">

Enjoy!!!!
 
Back
Top