This will:
<?php
session_start();
$_SESSION['name'] = 'Hello World!';
?>
<p class="username"><?php print $_SESSION['name']; ?></p>
solved HTML & Session problems [closed]
This will:
<?php
session_start();
$_SESSION['name'] = 'Hello World!';
?>
<p class="username"><?php print $_SESSION['name']; ?></p>
solved HTML & Session problems [closed]