my last post made me think of something, is it possible to create a link which when clicked passes a variable to whatever page the link forwards you too. using html or php????
you can forward variable values in a hyperlink to another php page like this...
<a href="nextpage.php?variable=variable">LINK</a>
or
<a href="nextpage.php?variable=<?php echo $variable ?>">LINK</a>