This kind of follows on from another question, but am working backwards, and trying to simply echo some contents from a session.
So at the top of my page I have :
<?php
session_start();
?>
And, using dreamweaver, have my session variable all looking present and correct in the applications > bindings panel.
So I presumed all I need to do to echo any of these variables is :
<?php echo $_SESSION['username']; ?>
..except nothing is displaying.....?