hi all i want to do is hide links when the user is not login in.
i thought i could do it this way but it gave me a error
<?php
if $_SESSION['MM_Username'] isset {
echo 'members area'; // i would put a link here
}
else
{
echo ' ';
}
?>
but i gave me a error
Parse error: parse error, expecting `'('' in C:\wamp\www\mywigan\content.php on line 123
please can some one show me how to hide links if a user is not login in, and show them when the user is login in
thanks alot