Why does this not work?
<form name="my_form" method="post" action="<?php $SERVER['PHP_SELF'];?>">
<p>My Var
<input type="text" name="form['my_var']" value="<?php print $REQUEST['form']['my_var'];?>">
<br>
</p>
<input type="submit" name="Submit" value="Submit">
</form>
What I cannot understand is that if I do the following:
<?php print_r($_REQUEST); ?>
I will get an array that has the form value in it. So why won't the form value print?
Thanks, in advance...