Menu
Forums
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Trending
What's new
New posts
New profile posts
Latest activity
Members
Current visitors
New profile posts
Search profile posts
Upgrades
Log in
Register
What's new
Search
Search
Search titles only
By:
All threads
Latest threads
New posts
Trending threads
New posts
Search forums
Menu
Log in
Register
Navigation
Install the app
Install
More options
Contact us
Close Menu
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
UberCMS Referral System!
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
<blockquote data-quote="Brad" data-source="post: 224184" data-attributes="member: 17995"><p>Hey People im releasing An little plugin for UberCMS called referral system, all this is if users invite there friends they will put the username who invited them then you can reward them manually.</p><p> </p><p>I think This Works With RevCMS but im not 100% Sure.</p><p> </p><p>Database Sql</p><p>[CODE]DROP TABLE IF EXISTS `referalls`;</p><p>CREATE TABLE `referalls` (</p><p> `Username` varchar(60) CHARACTER SET latin1 NOT NULL,</p><p> `By` varchar(60) CHARACTER SET latin1 NOT NULL,</p><p> `Valid` smallint(1) NOT NULL DEFAULT '1',</p><p> `Done` smallint(1) NOT NULL DEFAULT '0'</p><p>) ENGINE=InnoDB DEFAULT CHARSET=utf8;[/CODE]</p><p> </p><p> </p><p> </p><p>Tpl File (place in /includes/tpl/ Name As referrals</p><p>[CODE] </p><p> <div class="habblet-container "> </p><p> <div class="cbb clearfix blue "></p><p> <h2 class="title">Referrals</h2></p><p> <div class="box-content"></p><p>Have you been invited by someone?<br></p><p><form method="post"></p><p><input type="hidden" name="username" maxlength="30"/ value="%habboname%"> <br /> <br /></p><p><b>I was invited by: </b><br /><input type="text" name="d1" maxlength="60"/ value=""> <br /></p><p><?php</p><p> </p><p> </p><p> if(isset($_POST["BUY"]))</p><p> {</p><p> </p><p> dbquery("INSERT INTO `referalls` (`Username`, `By`) VALUES ('" . $_POST["username"] . "', '" . $_POST["d1"] . "')");</p><p> </p><p> }</p><p> ?></p><p> </p><p><input type="submit" value="Submit" name="BUY" /></form></p><p> </p><p><br><i>All accounts will be ip-checked before a reward is given.</i></p><p></div></div></div></p><p> </p><p><script type="text/javascript"></p><p>HabboView.run();</p><p></script> [/CODE]</p><p> </p><p> </p><p>Screenshot:</p><p> </p><p><a href="http://prntscr.com/1lzohy" target="_blank">http://prntscr.com/1lzohy</a></p><p> </p><p> </p><p>Credits:</p><p>Buzz Hotel & Fizz Hotel</p></blockquote><p></p>
[QUOTE="Brad, post: 224184, member: 17995"] Hey People im releasing An little plugin for UberCMS called referral system, all this is if users invite there friends they will put the username who invited them then you can reward them manually. I think This Works With RevCMS but im not 100% Sure. Database Sql [CODE]DROP TABLE IF EXISTS `referalls`; CREATE TABLE `referalls` ( `Username` varchar(60) CHARACTER SET latin1 NOT NULL, `By` varchar(60) CHARACTER SET latin1 NOT NULL, `Valid` smallint(1) NOT NULL DEFAULT '1', `Done` smallint(1) NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8;[/CODE] Tpl File (place in /includes/tpl/ Name As referrals [CODE] <div class="habblet-container "> <div class="cbb clearfix blue "> <h2 class="title">Referrals</h2> <div class="box-content"> Have you been invited by someone?<br> <form method="post"> <input type="hidden" name="username" maxlength="30"/ value="%habboname%"> <br /> <br /> <b>I was invited by: </b><br /><input type="text" name="d1" maxlength="60"/ value=""> <br /> <?php if(isset($_POST["BUY"])) { dbquery("INSERT INTO `referalls` (`Username`, `By`) VALUES ('" . $_POST["username"] . "', '" . $_POST["d1"] . "')"); } ?> <input type="submit" value="Submit" name="BUY" /></form> <br><i>All accounts will be ip-checked before a reward is given.</i> </div></div></div> <script type="text/javascript"> HabboView.run(); </script> [/CODE] Screenshot: [URL]http://prntscr.com/1lzohy[/URL] Credits: Buzz Hotel & Fizz Hotel [/QUOTE]
Insert quotes…
Verification
Post reply
Forums
Server Development
Habbo Retros
Habbo Releases
CMS Releases
UberCMS Referral System!
Top