issue130.php 271 B

12345678910111213
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4. <?php
  5. require_once 'utils.php';
  6. if ('1' === $_GET['p']) {
  7. echo '<a href="issue130.php?p=2">Go to 2</a>';
  8. } else {
  9. echo '<strong>'.html_escape_value($_SERVER['HTTP_REFERER']).'</strong>';
  10. }
  11. ?>
  12. </body>