PHP Session et Cookies: Excéuter une variable dans la session

Author:
 
<html>
 <head>
  
  <style type = "text/css">
    body { font-family:<?php echo( $_SESSION['font'] ); ?>; }
  </style>
 </head>
 <body>
  <h3>Preferred font family is still
  <?php echo( $_SESSION['font'] ); ?> </h3>
  <a href="prefs1.php">Change font?</a>  
 </body>
</html>