Oppaitime's version of Gazelle
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.

index.php 538B

1234567891011121314151617181920
  1. <?
  2. //Module mini-config
  3. include(SERVER_ROOT.'/sections/donate/config.php');
  4. if (!isset($_REQUEST['action'])) {
  5. include(SERVER_ROOT.'/sections/donate/donate.php');
  6. } else {
  7. switch ($_REQUEST['action']) {
  8. case 'ipn': // PayPal hits this page when a donation is received
  9. include(SERVER_ROOT.'/sections/donate/ipn.php');
  10. break;
  11. case 'complete':
  12. include(SERVER_ROOT.'/sections/donate/complete.php');
  13. break;
  14. case 'cancel':
  15. include(SERVER_ROOT.'/sections/donate/cancel.php');
  16. break;
  17. }
  18. }
  19. ?>