Advertisement
Guest User

Untitled

a guest
Jan 17th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. <a href='my_page.php?report_id=1'>Report 1</a>
  2. <a href='my_page.php?report_id=2'>Report 2</a>
  3.  
  4. <?php
  5.  
  6. if (isset($_GET['report_id']) {
  7. $report_id = $_GET['report_id'];
  8. if ($report_id =='1') {
  9. // ... generate the first report here
  10. }
  11. else if ($report_id=='2') {
  12. // ... do the other stuff here
  13. }
  14. }
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement