Hi.
I use the following syntax to send a variable name to a PHP script :
<input type="text" name="var_name"/>
<go href="script.php">
<postfield name="var_name" value="$(var_name)">
</go>
But I can't receive the value in the script :
<? echo $var_name; ?> returns nothing
and
<? echo $(var_name); ?> returns "$(var_name)"
How does it works ?