-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhomemkm_showroom.php
55 lines (48 loc) · 1.16 KB
/
homemkm_showroom.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
<?php
mysql_connect("localhost","root",'');
mysql_select_db('furnitures_mkm');
$sql="SELECT * FROM showroom";
$records=mysql_query($sql);
error_reporting(0);
include("design.css");
?>
<html>
<head>
<title>MKM Showroom</title>
</head>
<body>
<header>
<h1 style="font-size:75px">MKM Furniture</h1>
<h1 style="font-size:50px">Showroom</h1>
</header>
<div class="topnav">
<a href="home.php"> Home</a>
<a href="homemkm_furniture.php">Furniture</a>
<a href="homemkm_showroom.php">Showroom</a>
<a href="userlogin.php"> User Login</a>
</div>
<center>
<h2 style ="text-align:center">Showroom Details</h2>
<table width=75% border="1" cellpadding="1" cellspacing="1">
<tr>
<th>Showroom Name</th>
<th>Phone Number</th>
<th>Address</th>
<th>District</th>
</tr>
</center>
<?php
while($showroom=mysql_fetch_assoc($records)){
echo "<tr>";
echo "<td >".$showroom["sh_name"]."</td>";
echo "<td>".$showroom["tel_num"]."</td>";
echo "<td>".$showroom["address"]."</td>";
echo "<td>".$showroom["district"]."</td>";
echo "</tr>";
}
echo "<table>";
mysql_close();
?>
<footer>..Group 33..</footer>
</body>
</html>