File "foreign_exchange_rate.php"
Full path: /home/fsibplc/public_html/fsib/foreign_exchange_rate.php
File
size: 2.7 B (2.7 KB bytes)
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
include('./includes/config.php');
$page_title = "First Security Islami Bank PLC.";
//echo $page_title;
//echo $data[0]['value'];
$meta_description = "First Security Islami Bank PLC. Home page description";
$meta_keywords = "First Security Islami Bank PLC., Bank, Website";
include('includes/header.php');
include('includes/navbar.php');
//include('includes/slider.php');
?>
<!-- ++++++++++++++++++++++++++Start Body Tag++++++++++++++++++++++++++ -->
<!-- <div class="about_hero">
<h3>Compliance</h3>
</div> -->
<div class="container">
<?php
$pages = "SELECT * FROM pages WHERE slug = 'foreign-exchange-rate' LIMIT 1";
$pages_run = mysqli_query($con, $pages);
if (mysqli_num_rows($pages_run) > 0) {
foreach ($pages_run as $pageitem) {
?>
<!--Start Privacy Policy Area-->
<?php echo $pageitem['description'];
}}
?>
<!-- backup if id change any code
<h4 class="tab_title m-5">Today's Exchange Rate</h4>
<div class="table-responsive ">
<table class="table table-bordered table-striped table-hover" style="margin:30px auto;">
<thead style="background: hsla(265, 100%, 95%, 0.5);">
<th style="Padding:20px 0;color:#044177">Currency Name</th>
<th style="Padding:20px 0;color:#044177">Buying TT</th>
<th style="Padding:20px 0;color:#044177">Buying Cash</th>
<th style="Padding:20px 0;color:#044177">Selling BC</th>
<th style="Padding:20px 0;color:#044177">Selling Cash</th>
</thead>
<tr>
<td>USD</td>
<td>116.5000</td>
<td>117.0000</td>
<td>117.5000</td>
<td>118.0000</td>
</tr>
<tr>
<td>EUR</td>
<td>125.5191</td>
<td>129.0000</td>
<td>130.4807</td>
<td>135.5000</td>
</tr>
<tr>
<td>GBP</td>
<td>144.8931</td>
<td>145.0000</td>
<td>152.1016</td>
<td>153.0000</td>
</tr>
<tr>
<td>JPY</td>
<td>0.7488</td>
<td></td>
<td>0.7858</td>
<td></td>
</tr>
</table>
</div> -->
</div>
<!-- ++++++++++++++++++++++++++Start Footer Section++++++++++++++++++++++++++ -->
<?php include('includes/footer.php'); ?>