search.php 640 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <?php
  3. setcookie("SessionID", time()+3600*24);
  4. ?>
  5. <html xmlns="http://www.w3.org/1999/xhtml">
  6. <head>
  7. <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
  8. <link rel="shortcut icon" href="../images/favicon.ico" type="image/x-icon">
  9. <title>Search result:</title>
  10. <style type="text/css">
  11. <!--
  12. body,td,th {
  13. color: #FFFFFF;
  14. }
  15. body {
  16. background-color: #000000;
  17. }
  18. -->
  19. </style></head>
  20. <body>
  21. <span>Search result :</span>&nbsp;<strong><?php echo $_REQUEST['search_text']; ?></strong>&nbsp;
  22. </body>
  23. </html>