I want to display a form button that says either logout or register when a users first_name is recognized in the Session... i have this code so far.. but i want to remove the echo and put html in how and where do i put the HTML?
<?php
if(isset($_SESSION['first_name'])) {
echo ", {$_SESSION['first_name']}!";
}
echo '</h1>';
<?
I hope someone can help. im desperate for this!
Thanks Chris