Posted by Janwillem Borleffs on 06/19/06 20:39
Henk Oegema wrote:
> <?php print("$Team"); ?>
>
With register_globals enabled (see the manual), this would work.
Fortunately, this directive is disabled in the current PHP distributions (it
poses some security threats) and therefore, you will have to reference the
appropriate key from the $_GET super global array:
<?php print($_GET["Team"]); ?>
More information:
http://www.php.net/manual/en/tutorial.forms.php
JW
[Back to original message]
|