Hi everyone
I'm trying to create a blog style webpage which has multiple side menu divs, including a login form and a user menu. I'm using php5. What I want is for several of these sections to be visible only once the user has logged in. Similarly, things like the log in form should disappear once the user has logged in. I tried doing this through the use of a conditional statement as follows:
<div
<?php
if ($_SESSION['login'] = "yes"){
echo "style=\"display:none\"";
}
?>
However, this doesn't seem to be working. Any ideas?
Thanks