-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.php
116 lines (85 loc) · 3.51 KB
/
order.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
if(isset($_GET['id']) && $_GET['id'] == 100){
$prd_name = "Jeans Mens #100";
$price = 100;
// Price calculation with tax and fee
$fee = 3 +($price*.02);
$tax = $fee * .15;
$prd_price = $fee + $tax + $price;
}
else if(isset($_GET['id']) && $_GET['id'] == 101){
$prd_name = "T Shirt Mens #101";
$price = 200;
// Price calculation with tax and fee
$fee = 3 +($price*.02);
$tax = $fee * .15;
$prd_price = $fee+ $tax + $price;
}
else if(isset($_GET['id']) && $_GET['id'] == 102){
$prd_name = "Sunglass Mens #102";
$price = 1000;
// Price calculation with tax and fee
$fee = 3 +($price*.02);
$tax = $fee * .15;
$prd_price = $fee+ $tax + $price;
} else {
echo "No such a prodcut to purchase :(";
exit();
}
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="../../favicon.ico">
<title>Payment Mojo</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<div class="page-header">
<h1><a href="index.php">Instamojo Payment</a></h1>
<p class="lead">A test payment integration for instamojo payment gateway. Written in PHP</p>
</div>
<p>
<b>Product name :</b> <?php echo $prd_name; ?>
</p>
<p>
<b>Price : </b> <?php echo $price; ?>
</p>
<p><b>Bank Fee : </b> <?php echo $tax + $fee ; ?> <small> (Rs:3+ 2% of fee+ 15% Service Tax)</small></p>
<p><b>Total : </b> <?php echo $prd_price; ?></p>
<h3>Your Payment Details </h3>
<hr>
<form action="pay.php" method="POST" accept-charset="utf-8">
<input type="hidden" name="product_name" value="<?php echo $prd_name; ?>">
<input type="hidden" name="product_price" value="<?php echo $prd_price; ?>">
<div class="form-group">
<label>Your Name</label>
<input type="text" class="form-control" name="name" placeholder="Enter your name"> <br/>
</div>
<div class="form-group">
<label>Your Phone</label>
<input type="text" class="form-control" name="phone" placeholder="Enter your phone number"> <br/>
</div>
<div class="form-group">
<label>Your Email</label>
<input type="email" class="form-control" name="email" placeholder="Enter you email"> <br/>
</div>
<input type="submit" class="btn btn-success btn-lg" value="Click here to Pay Rs:<?php echo $prd_price; ?> ">
</form>
<br/>
<br/>
</div> <!-- /container -->
</body>
</html>