Possible Duplicate:
How to fix the session_register() DEPRECATED problem?
I tried the following code out in firefox and it gave me an error whats wrong?
<?php
session_start();
$username = "Eric";
session_register("username");
?>
<h2>Mijn naam is <?php echo $_SESSION["username"];?></h2>