I have the following code in my header.php, which fetches a message from the $_SESSION and displays it to the user, I set the "message" session variable in a controller.
<div id="messages">
<?php if (isset($_SESSION["message"])):?>
<span class="message"> <?php echo "message is ".$_SESSION["message"]?>
</span>
<?php endif ?>
</div>
This works fine and the message is displayed. Now I want to remove the the "message" variable from the session such that it is called only in one request, so I add the line unset($_SESSION["message"]); before the end, so the code becomes:
<div id="messages">
<?php if (isset($_SESSION["message"])):?>
<span class="message"> <?php echo "message is ".$_SESSION["message"]?>
</span>
<?php
unset($_SESSION["message"]);
else :
//for debugging
echo "There is no message";
endif
?>
</div>
Now there is always no messages printed, and instead the "there is no message" is always printed !! The message variable is set correctly, as I said when removing this unset($_SESSION["message"]); line, the message is displayed.
By the way I am not using a framework, just plain php. Any help ?
$_SESSION['message']at all. – aacanakin Jan 3 at 22:27