Is there a way to put a php variable in an without it automatically being visible, like a GET variable?
<a href="myphpfile.php?variable=hidden">Some click</a>
I want the subsequent browser URL to be www.myphpfile.php (no variable visible).
Thanks for any help.
You could create a form for it with
method="post"and style the submit button as a normal link using CSS.That is if I understood you question correctly.