Mini Shell
<?php require_once('function-file.php');
require_once('function-menu.php');
require_once('config.php');
$stu_id=$_GET['usf'];
$data=$conn->prepare("select * from student_reg a left join courses b on a.course_id=b.course_id where stu_id='$stu_id'");
$data->execute();$row=$data->fetch();
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<title>Home | Lanka Virtual Academy</title>
<?php commoncss();?>
<style>.table>tbody>tr>td{border:none;}table{border: 1px solid #e7e7e7;}</style>
</head><!--/head-->
<body class="homepage">
<?php headermenu();?>
<section >
<div class="container">
<div class="row" align="center">
<div class="col-sm-12">
<h2>WELCOME TO Lanka Virtual Academy!</h2>
<h4>HOW TO PROCEED WITH ACTIVATING YOUR COURSE?</h4><br>
<p style="color: #000;line-height:25px">Please select one of our below listed Bank Accounts
<br>
Make a direct deposit or online transfer of the relevant course fees to the selected Bank Account
<br>
Fax the deposit or online bank transfer confirmation slip to 012 234 5647 or,
<br>
Email a scanned copy of the slip to : subscription@lankavirtualacademy
</p>
<small>Your chosen Course and the Subscription Fees for the complete School Year is as follows:</small>
<h4><?php echo $row['course_name'];?> (SLR <?php echo $row['course_fees'];?>)</h4>
</div>
<div class="col-sm-12">
<hr />
<table class="table table-stripped" style="max-width:500px;" align="center">
<tr>
<td><img src="images/bank/combank.gif"/></td>
<td><h4>Commercial Bank</h4>(Direct Deposit / Money Transfer)</td>
</tr>
<tr>
<td>Account Number</td><td>169 - 004 - 9333</td>
</tr>
<tr>
<td>Payee Name</td><td>Lanka Virtual Academy</td>
</tr>
<tr>
<td>Bank Branch</td><td>Kiribathgoda</td>
</tr>
</table>
<br />
<table class="table table-stripped" style="max-width:500px;" align="center">
<tr>
<td><img src="images/bank/sampath.gif"/></td>
<td><h4>Sampath Bank</h4>(Direct Deposit / Only)</td>
</tr>
<tr>
<td>Account Number</td><td>0207 - 1000 - 0965</td>
</tr>
<tr>
<td>Payee Name</td><td>Lanka Virtual Academy</td>
</tr>
</table>
<br />
<table class="table table-stripped" style="max-width:500px;" align="center">
<tr>
<td><img src="images/bank/peoples.jpg"/></td>
<td><h4>People's Bank</h4>(Direct Deposit / Money Transfer)</td>
</tr>
<tr>
<td>Account Number</td><td>237-100-1100-16855</td>
</tr>
<tr>
<td>Payee Name</td><td>Lanka Virtual Academy</td>
</tr>
</table>
<br />
<table class="table table-stripped" style="max-width:500px;" align="center">
<tr>
<td><img src="images/bank/hnb.png"/></td>
<td><h4>Hatton National Bank (HNB)</h4>(Direct Deposit / Money Transfer)</td>
</tr>
<tr>
<td>Account Number</td><td>056 - 0100 - 19334</td>
</tr>
<tr>
<td>Payee Name</td><td>Lanka Virtual Academy</td>
</tr>
<tr>
<td>Bank Branch</td><td>Kiribathgoda</td>
</tr>
</table>
<br />
<table class="table table-stripped" style="max-width:500px;" align="center">
<tr>
<td><img src="images/bank/ntb.png"/></td>
<td><h4>Nations Trust Bank (NTB)</h4>(Direct Deposit / Money Transfer)</td>
</tr>
<tr>
<td>Account Number</td><td>100 - 1600 - 00282</td>
</tr>
<tr>
<td>Payee Name</td><td>Lanka Virtual Academy</td>
</tr>
<tr>
<td>Bank Branch</td><td>Kiribathgoda</td>
</tr>
</table>
<hr >
<p><b>Should you have difficulty in completing any of the above steps<br>
please feel free to contact us at 012 345 6789 at any time, we are ready to help 24/7.</b></p>
</div>
</div>
</div>
</section>
</body>
</html>
Zerion Mini Shell 1.0