-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutilitybills.php
More file actions
98 lines (95 loc) · 2.52 KB
/
Copy pathutilitybills.php
File metadata and controls
98 lines (95 loc) · 2.52 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?php
/**
* Created by PhpStorm.
* User: Waqas Ahmad
* Date: 3/7/2017
* Time: 1:04 AM
*/
session_start();
if(!isset($_SESSION['mysession'])){
header('location:index.php');
}
?>
<?php require_once('template/head.php');?>
</style>
</head>
<body>
<div class="container-fluid">
<?php require_once('template/nav.php');?>
<table class="table table-striped table-bordered">
<th colspan="2"> Electric Bill Information </th>
<tr>
<td> Name and Address </td>
<td> MOHD AFZAL KHAN S/O ALI AKBAR VILL GOLARA SHARIF </td>
</tr>
<tr>
<td>Refrence No </td>
<td>12141272667900</td>
</tr>
<tr>
<td>Refrence No New </td>
<td>12141272874900</td>
</tr>
<tr>
<td>Meter No</td>
<td> S-P 201967 </td>
</tr>
<tr>
<td>Website to check bill</td>
<td> <a href="http://210.56.23.106:888/iescobill" target="_blank"> Check Electric bill </a> </td>
</tr>
<tr>
<td>Normally Due date</td>
<td>9th of Month</td>
</tr>
</table>
<table class="table table-striped table-bordered">
<th colspan="2"> Gas Bill Information </th>
<tr>
<td> Name and Address </td>
<td>NAUSHAD ALI KHAN GOLRA SHARIF OH KHANA WALA ISLAMABAD </td>
</tr>
<tr>
<td>CONSUMER No </td>
<td> 99976624728 </td>
</tr>
<tr>
<td>Meter No</td>
<td> GN00100999 </td>
</tr>
<tr>
<td>Website to check bill</td>
<td> <a
href="http://sngpl.com.pk/login.jsp?mdids=85&pgname=PAGES_NAME_a&secs=ss7xa852op845&cats=ct456712337&artcl=artuyh709123465"
target="_blank"> Check Gas bill </a> </td>
</tr>
<tr>
<td>Normally Due date</td>
<td>7th of Month</td>
</tr>
</table>
<table class="table table-striped table-bordered">
<th colspan="2"> PTCL Bill Information </th>
<tr>
<td> Name and Address </td>
<td>BABU NAWAB APT,MOHALLA KHANAWALLA,GOLRA SHARIF,ISLAMABAD </td>
</tr>
<tr>
<td>Account ID </td>
<td> 100000188327 </td>
</tr>
<tr>
<td>PTCL No</td>
<td> 2155191 </td>
</tr>
<tr>
<td>Website to check bill</td>
<td> <a href="https://dbill.ptcl.net.pk/PTCLSearchInvoice.aspx" target="_blank"> Check PTCL bill </a> </td>
</tr>
<tr>
<td>Normally Due date</td>
<td>6th of Month</td>
</tr>
</div>
<?php require_once('template/foot.php');
?>