lewisRetros
New Member
- Apr 14, 2013
- 20
- 0
Hey Devbest i got a ubercms referral system
I get that error i need the sql for it
the code for it is
If anyone could make a sql for me it'd help loads Thanks.
You must be registered for see links
I get that error i need the sql for it
the code for it is
Code:
<div class="habblet-container ">
<div class="cbb clearfix green ">
<h2 class="title">Referal!</h2>
<div class="box-content">
<center>
%habboName%, here you can find out how to refer users to Tech Hotel, doing so will earn you credits and pixels!
<br/><br/>
Simply refer users to Tech Hotel and if they enter your name in the 'Referer' box you will be rewarded!
</center>
<br/>
<?php
$getInviteCount = mysql_num_rows(mysql_query("SELECT * FROM `users_referrals` WHERE `refer` = '" . USER_ID . "'"));
if ($getInviteCount == null)
$getInviteCount = 0;
?>
<div class="rounded rounded-green"><center>
You invited <?php echo $getInviteCount; ?> users!
</center></div>
</div>
</div>
</div>