Skip to content
Snippets Groups Projects
betteln4.php 1009 B
Newer Older
Eric Laufer's avatar
Eric Laufer committed
<?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">&nbsp;<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">&nbsp;<a href="<?php echo $grundconfig->domain;?>/?page=/betteln&amp;ref=<?php echo $_SESSION['uid'];?>" target="_blank"><?php echo $grundconfig->domain;?>/?page=/betteln&amp;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>
Eric Laufer's avatar
Eric Laufer committed
		<th class="text-right"><?php echo $grundconfig->waehrung;?></th>
Eric Laufer's avatar
Eric Laufer committed
	</tr>
<?php
echo $bettel->Top25();
?>
</table>
<?php foot(); ?>