blob: f93d08eeb5bd1e1698e996ecd1b58784c4c17c28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<? $title ='Make A Payment'; include('elements/header.php'); ?>
<? $current_menu = 'payment.php'; include('elements/menu.php'); ?>
<? include('elements/error.php'); ?>
<FONT SIZE="+1">
<a href="payment_cc.php">Credit card payment</A><BR><BR>
<a href="payment_ach.php">Electronic check payment</A><BR><BR>
<a href="payment_paypal.php">PayPal payment</A><BR><BR>
<a href="payment_webpay.php">Webpay payment</A><BR><BR>
</FONT>
<? include('elements/menu_footer.php'); ?>
<? include('elements/footer.php'); ?>
|