Why doesn't this work?

Go4Expert Member
7Feb2011,05:58   #1
Complete's Avatar
Why doesn't this work?
Code:
<?php
    if ($_POST['textbox1'] != "")
		$_ENV['mytestzeststring'] = $_POST['textbox1'];
	print $_ENV['mytestzeststring'];
?>

<form name="registerform" id="registerform" action="<?php echo site_url('wp-login.php?action=register', 'login_post') ?>" method="post">
	  <input type="text" name="testbox1"/>
	  <input type="submit" value="Click me!"/>

</form>
Wouldn't this present on the page before the form declaration whatever the user types in the test box?
Go4Expert Founder
7Feb2011,07:02   #2
shabbir's Avatar
What does action=has in the final html
Ambitious contributor
9Feb2011,06:46   #3
pein87's Avatar
Most servers don't have the super global $_ENV set which may be why. I don't know why your using it to begin with since it has default array keys. $_ENV gets environment data and is not a general all you can store global try using $_GLOBAL instead or your own array or variable.