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.

29 lines
523 B

  1. <html>
  2. <body>
  3. <head>
  4. <title>Request Information Example</title>
  5. </head>
  6. <body bgcolor="white">
  7. <h3>Request Information Example</h3>
  8. <table border=0><tr><td>
  9. Method:
  10. </td><td>
  11. <?php print $request->method ?>
  12. </td></tr><tr><td>
  13. Request URI:
  14. </td><td>
  15. <?php print $request->requestURI ?>
  16. </td></tr><tr><td>
  17. Protocol:
  18. </td><td>
  19. <?php print $request->protocol ?>
  20. </td></tr><tr><td>
  21. Path Info:
  22. </td><td>
  23. <?php print $request->pathInfo ?>
  24. </td></tr><tr><td>
  25. Remote Address:
  26. </td><td>
  27. <?php print $request->remoteAddr ?>
  28. </table>