cookie_page2.php 328 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Basic Form</title>
  5. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"/>
  6. </head>
  7. <body>
  8. Previous cookie: <?php
  9. require_once 'utils.php';
  10. echo isset($_COOKIE['srvr_cookie']) ? html_escape_value($_COOKIE['srvr_cookie']) : 'NO';
  11. ?>
  12. </body>
  13. </html>