-
Notifications
You must be signed in to change notification settings - Fork 2
/
price.php
51 lines (49 loc) · 1.93 KB
/
price.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
<!DOCTYPE html>
<html>
<title>PaperPlant</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="CSS/mycss.css">
<?php
session_start();
require("head.php");
?>
<?php
$mysqli = new mysqli("localhost","root","","paperplant");
// Check connection
if ($mysqli -> connect_errno) {
echo "Failed to connect to MySQL: " . $mysqli -> connect_error;
exit();
}
?>
<!-- Footer -->
<footer id="footer">
<div class="pp-row pp-black">
<div class="pp-third" style="font-size:1.5vw">
Download The App Now
<br>
<a href="#"><img src="Images/gplay.png" width="25%"></a>
<a href="#"><img src="Images/astore.png" width="22%"></a>
</div>
<div class="pp-third pp-center" style="font-size:1.5vw">
<a href="#" style="color:#FFFFFF">About Us</a>
<br>
<a href="#" style="color:#FFFFFF">Privacy Policies</a>
<br>
<a href="#" style="color:#FFFFFF">Careers</a>
<br>
<a href="#" style="color:#FFFFFF">Advertise With Us</a>
</div>
<div class="pp-third" style="font-size:1.5vw">
                      
                    Join Us <br>
<a href="#" ><img src="Images/google.png" width="15%" style="float:right"></a>
<a href="#"><img src="Images/twitter.png" width="15%" style="float:right"></a>
<a href="#"><img src="Images/facebook.png" width="15%" style="float:right"></a>
</div>
</div>
</footer>
<div style=" background-color:#dd4b39; color:white ;font-size:14px;">
<div style="text-align:center;">© - Paper Plant Technologies</div>
</div>
</body>
</html>