PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!
First, you're welcome. Second, yes it does now correctly echo the parameter 'uct' -- unless this page is not named index.php. Third, you really did not ask a question or specify a problem. Forth, the big red letters just make you look bad.
The only time that will display is if the url has the ?uct= parameters otherwise you wont get anything other then maybe an error on your page because you are trying to echo something that has not yet been defined.
You should really be doing something like this instead,
<?php
if(isset($_GET['uct'])){
echo $_GET['uct'];
}
?>
The above will only echo that if it actually exists.