-
Notifications
You must be signed in to change notification settings - Fork 0
/
ad-details.php
78 lines (72 loc) · 3.11 KB
/
ad-details.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
<?php
include "header.php";
if (file_exists('config/user_authentication.php')) {
include('config/user_authentication.php');
}
?>
<!-- START -->
<!--PRICING DETAILS-->
<section class="login-reg <?php if ($footer_row['admin_language'] == 2) {
echo "lg-arb";
} ?>">
<div class="container">
<div class="row">
<div class="login-main add-list ad-table">
<div class="log-bor"> </div>
<span class="steps"><?php echo $BIZBOOK['AD-DETAILS']; ?></span>
<div class="ad-table-inn ud-cen-s2">
<table class="responsive-table bordered">
<thead>
<tr>
<th><?php echo $BIZBOOK['S_NO']; ?></th>
<th><?php echo $BIZBOOK['AD-DETAILS-ADS-NAME']; ?></th>
<th><?php echo $BIZBOOK['AD-DETAILS-ADS-PREVIEW']; ?></th>
<th><?php echo $BIZBOOK['AD-DETAILS-ADS-SIZE']; ?></th>
<th><?php echo $BIZBOOK['AD-DETAILS-COST-DAY']; ?></th>
<th><?php echo $BIZBOOK['AD-DETAILS-START-ADS']; ?></th>
</tr>
</thead>
<tbody>
<?php
$si = 1;
foreach (getAllAdsPrice() as $row) {
$all_ads_price_id = $row['all_ads_price_id'];
?>
<tr>
<td><?php echo $si; ?></td>
<td><?php echo $row['ad_price_name']; ?></td>
<td>
<img loading="lazy" src="images/ads/<?php echo $row['ad_price_photo']; ?>" alt="">
</td>
<td><?php echo $row['ad_price_size']; ?></td>
<td><?php echo $row['ad_price_cost']; ?><?php echo $footer_row['currency_symbol']; ?></td>
<td><a href="post-your-ads" class="db-list-rat"><?php echo $BIZBOOK['AD-DETAILS-POST-YOUR-ADS']; ?></a></td>
</tr>
<?php
$si++;
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
<!--END PRICING DETAILS-->
<?php
include "footer.php";
?>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-ui.js"></script>
<script src="<?php echo $slash; ?>js/select-opt.js"></script>
<script src="<?php echo $slash; ?>js/blazy.min.js"></script>
<script type="text/javascript">var webpage_full_link = '<?php echo $webpage_full_link;?>';</script>
<script type="text/javascript">var login_url = '<?php echo $LOGIN_URL;?>';</script>
<script src="js/custom.js"></script>
</body>
</html>