I know it's possible to use a select box to change a PHP variable and post the results (reloading the page with the new value set on the variable). But does anyone know a way of doing this with a text link for each value instead of a select box?
what about <a href=this.php?value=that>click me</a>
<script language=javascript> function submitIt { document.formname.submit() </script> } <form name=formanme> <a href='javascript:SubmitIt()'>click</a> </form>