-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcheckout.php
executable file
·33 lines (29 loc) · 938 Bytes
/
checkout.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
<?php
include 'header.php';
echo "<br><br><br><br><br>";
session_start();
echo "Item Selected : " .count($_SESSION['cart']);
echo "<br> Total Amount : " .$_SESSION['total'];
?>
<br><br>
<form action="checkout_sbmt.php" method="get" id="usrdtls">
Provide your Details :- <br>
<table>
<tr>
<td> Name : </td>
<td> <input type="text" name="name"> </td>
</tr>
<tr>
<td> Mobile No : </td>
<td> <input type="text" name="mobile"> </td>
</tr>
<tr>
<td> Address : </td>
<td> <textarea rows="4" cols="30" form="usrdtls" name="adrs"></textarea> </td>
</tr>
<tr>
<td> <input type="submit" name="sbmt" value="Submit">
<td> <input type="reset"> </td>
</tr>
</table>
</form>