Sagaert Johan <mailto:[EMAIL PROTECTED]> on Wednesday, February 02, 2005 2:38 AM said:
> can i use this kind of construction in my html code ?
>
> <a href="test.php?selection=high">Select high</a>
Yes.
> if yes , how do i retrieve the passed string in the php code
<?php
$value = $_GET['selection'];
?>
Be sure to validate the data first though.
Chris.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

