| Current Path : /home2/wtmwscom/public_html/member/ |
| Current File : /home2/wtmwscom/public_html/member/report_royalty.php |
<?php
$title= "Royalty Report";
include 'header.php';
include_once('lib/ps_pagination.php');
$uid = $_SESSION['userid'];
?>
<h1>Club membership Report</h1>
<?php echo getMessage();?>
<section>
<table style="width: 100%;" class="table table-striped table-hover">
<thead>
<tr>
<th>S. No.</th>
<th>Amount</th>
<th>Club</th>
<th>Rate</th>
<th>Income (%)</th>
</tr>
</thead>
<tbody>
<tr>
<td>1.</td>
<td>500000</td>
<td>Silver Club</td>
<td>1 %</td>
<td>-</td>
</tr>
<tr>
<td>2.</td>
<td>1500000</td>
<td>Gold Club</td>
<td>1 %</td>
<td>-</td>
</tr>
<tr>
<td>3.</td>
<td>5000000</td>
<td>Platinum Club</td>
<td>1 %</td>
<td>-</td>
</tr>
<tr>
<td>4.</td>
<td>20000000</td>
<td>Ruby Club</td>
<td>1 %</td>
<td>-</td>
</tr>
<tr>
<td>5.</td>
<td>500000000</td>
<td>Diamond Club</td>
<td>1 %</td>
<td>-</td>
</tr>
</tbody>
</table>
</section>
<?php include 'footer.php';?>