Newer
Older
<?php
require_once('lib/class/bettel.class.php');
$bettel = new BETTEL;
head('Dein Bettellink');
?>
<table class="table">
<tr>
<td align="right"><b>Dein Reflink:</b></td>
<td align="left"> <a href="<?php echo $grundconfig->domain;?>/?ref=<?php echo $_SESSION['uid'];?>" target="_blank"><?php echo $grundconfig->domain;?>/?ref=<?php echo $_SESSION['uid'];?></a></td>
</tr>
<tr>
<td align="right"><b>Reflink und Bettellink:</b></td>
<td align="left"> <a href="<?php echo $grundconfig->domain;?>/?page=/betteln&ref=<?php echo $_SESSION['uid'];?>" target="_blank"><?php echo $grundconfig->domain;?>/?page=/betteln&ref=<?php echo $_SESSION['uid'];?></a></td>
</tr>
</table>
<?php
foot();
head('Die Top 25 Bettler');
?>
<table class="table table-striped">
<tr class="tr_head">
<th>Rang</th>
<th>Mitglied</th>
<th class="text-right">Aufrufe</th>
</tr>
<?php
echo $bettel->Top25();
?>
</table>
<?php foot(); ?>