-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHPLaptop1 - Copy (2).php
83 lines (71 loc) · 1.87 KB
/
HPLaptop1 - Copy (2).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
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "hplaptop1";
// Create connection
$conn = new mysqli($servername, $username, $password,$dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . mysqli_connect_error());
}
echo "Connected successfully" . "<br >";
?>
<!doctype html>
<html>
<head>
<title>Samsung S8</title>
<link rel="stylesheet" type="text/css" href="Samsung_s8.css">
<link href="https://fonts.googleapis.com/css?family=Titillium+Web" rel="stylesheet">
</head>
<body background='Web-background2.jpg'>
<div id="wrapper">
<div id="header">
<div id="img">
<img src="mag1.png" title="Mad about Gadget"width="120px" height="100px"/>
</div>
<span class="slogan">Discover your product !</span>
</div>
<div class ="navbar">
<ul>
<li><a href="#home">HOME</a></li>
<li><a href="#NEWS">NEWS</a></li>
<li><a href="#VIDEOS">VIDEOS</a></li>
<li><a href="#REVIEWS">REVIEWS</a></li>
<li><a href="#Others">OTHERS</a></li>
<li><a href="#About us">ABOUT US</a></li>
</ul>
</div>
<div class= "phone_name">
<h2 class="font">HP Pavilion</h2>
</div>
<div class="box1">
<img src="hp_pavillion14.jpg" width= "500px" height="320px"/>
</div>
<div style="margin-left:100px">
<table>
<?php
$sql = "SELECT * FROM hplaptopfirst";
$phone_query_result = mysqli_query($conn,$sql) or die(mysql_error());
if(mysqli_num_rows($phone_query_result) > 0)
{
while ($row = mysqli_fetch_array($phone_query_result))
{
?>
<tr>
<td><h3><?php echo $row['id']; ?></h3></td>
<td><h3><?php echo $row['Category']; ?></h3></td>
<td><h4><?php echo $row['Type']; ?></h4></td>
<td><h5><?php echo $row['ans']; ?></h5></td>
</tr>
<?php
}
}
?>
</table>
</div>
<footer>
© 2017 madaboutgadget.com - All Rights Reserved
</footer>
</body>
</html>