You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
415 B

  1. <html>
  2. <body bgcolor="white">
  3. <head>
  4. <title>Request Header Example</title>
  5. </head>
  6. <body>
  7. <h3>Request Header Example</h3>
  8. <table border=0>
  9. <?php
  10. $e = $request->headerNames;
  11. while ($e->hasMoreElements()) {
  12. $name = $e->nextElement();
  13. $value = $request->getHeader($name);
  14. print "<tr><td bgcolor=\"#CCCCCC\">$name\n";
  15. print "</td><td>$value</td></tr>\n";
  16. }
  17. ?>
  18. </table>
  19. </body>
  20. </html>