as above when a user is logged into my website, I want it to say hello or welcome "user"
i'm using the code below:
[code]
<?php
$user = $_GET['session_is_registered'];
echo ('$user');
?>
[/code]
but the php just displays "$user"
what am I doing wrong?
thanks