-
Notifications
You must be signed in to change notification settings - Fork 1
/
payment_options.php
executable file
·41 lines (21 loc) · 1.13 KB
/
payment_options.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<div class="box"><!-- box Begin -->
<?php
$session_email = $_SESSION['customer_email'];
$select_customer = "select * from customers where customer_email='$session_email'";
$run_customer = mysqli_query($con,$select_customer);
$row_customer = mysqli_fetch_array($run_customer);
$customer_id = $row_customer['customer_id'];
?>
<h1 class="text-center">Payment Options For You</h1>
<p class="lead text-center"><!-- lead text-center Begin -->
<a href="order.php?c_id=<?php echo $customer_id ?>"> Offline Payment </a>
</p><!-- lead text-center Finish -->
<center><!-- center Begin -->
<p class="lead"><!-- lead Begin -->
<a href="#">
Paypal Payment
<img class="img-responsive" src="images/paypall_img.png" alt="img-paypall">
</a>
</p> <!-- lead Finish -->
</center><!-- center Finish -->
</div><!-- box Finish -->