home *** CD-ROM | disk | FTP | other *** search
/ Master Visually: Macrome…a Dreamweaver 8 & Flash 8 / MasterVisuallyDreamweaver8AndFlash8.iso / mac / Samples / ch16 / session_display.php < prev    next >
PHP Script  |  2005-12-28  |  391b  |  13 lines

  1. <?php session_start() ?>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  6. <title>Display session variables</title>
  7. </head>
  8.  
  9. <body>
  10. <?php echo $_SESSION['Name']; ?>
  11. </body>
  12. </html>
  13.