-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomer.php
More file actions
40 lines (37 loc) · 1.12 KB
/
customer.php
File metadata and controls
40 lines (37 loc) · 1.12 KB
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
<?php
include 'header.php';
include 'conn.php';
?>
<!DOCTYPE html>
<html>
<head>
<title>
Customer Details.
</title>
</head>
<body>
<pre>
<h1>Kindly fill in your details: </h1>
<?php
$name=$_POST['customer_name'];
// $rent1=500;
?>
</body>
</html>
<pre>
<form action ="entries.php" method="POST" >
<fieldset>
<legend>Customer information:</legend>
<p style="font-size:200%"> Name: <input type="text" name="customer_name">
Room Type: <select name="room_type">
<option value="std">Standard Room</option>
<option value="del">Deluxe Room</option>
<option value="ex">Executive Room</option>
<option value="esuite">Executive Suite</option>
<option value="gesuite">Grand Executive Suite</option>
<option value="ksuite">King Suite</option>
</select><br>
<input type="submit" value="submit">
</fieldset>
</form>
</pre>