<?php
  session_start
();

  
$_SESSION['user']="toto";

  echo
"Your username is ".$_SESSION['user'];
?>

<br>
<a href='ex10b.php'>next</a>