<?php session_start(); ?> <html> <head> <title>Registering Variables with a Session</title> </head> <body> <div> <?php $_SESSION['product1'] = "A"; $_SESSION['product2'] = "B"; print "The products have been registered"; ?> </div> </body> </html>