can I pass a variable into a php tag via an html link tag? IE, I have a template page called template.html which includes the folowing php
<code>
<?php include "$filename">
</code>
If I link to this file from somewhere else, can I insert a value into the <code> <a> </code> tag to pass a value to the variable, suck as <code> <a href="template.html" $filename="somefile.txt"> </code>
any ideas/comments are much appreciated
-jon-