-
Notifications
You must be signed in to change notification settings - Fork 0
/
result.php
38 lines (35 loc) · 920 Bytes
/
result.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
<?php
include "./connection/connection.php";
include "./web-crawler/web-crawler.php";
?>
<!DOCTYPE html>
<html>
<head>
<title>E Billing | Check Your Bills of All Pakistani Services</title>
<link rel="shortcut icon" href="./images/wapda/ebillpk-logo.png" type="image/x-icon">
<?php
include "./components/bootstrap/bootstrap-head.php";
include "./components/other-meta-links/meta-links.php";
?>
<!-- Local Link -->
<link rel="stylesheet" href="./style/navigation.css">
</head>
<body>
<!-- Navigation -->
<?php
include "./components/navigation/navigation.php";
?>
<!-- Markup -->
<?php
include "./pages/result/result-frontend.php"
?>
<!-- Footer -->
<?php
include "./components/footer/footer.php";
?>
<!-- Bootstrap JavaScript Link -->
<?php
include "./components/bootstrap/bootstrap-javascript-foot.php";
?>
</body>
</html>