i am having trouble passing variables in the URL... I have simlified the problem here:
index.php contains the code:
<?
$var = "smile";
echo $var;
echo "<a href=\"index.php?var=notworking\">Change_Var</a>";
?>
and for whatever reason this does not change the value of var?