I'm learning session variables and I can register 1 variable just fine:
<?php
session_start();
$_SESSION['x1'] = 'testing this out';
echo $_SESSION['x1'];
?>
But, I tried to do more than one session variable and haven't been successful. I know it's probably an easy fix, but all the tutorials I read show me how to register just 1 variable.
thanks!