The following warnings occurred:
Warning [2] Undefined variable $unreadreports - Line: 26 - File: global.php(961) : eval()'d code PHP 8.1.2-1ubuntu2.14 (Linux)
File Line Function
/global.php(961) : eval()'d code 26 errorHandler->error
/global.php 961 eval
/printthread.php 16 require_once



UserSpice
How do you make a referral system on US? - Printable Version

+- UserSpice (https://userspice.com/forums)
+-- Forum: Miscellaneous (https://userspice.com/forums/forumdisplay.php?fid=28)
+--- Forum: Off-topic Discussions (https://userspice.com/forums/forumdisplay.php?fid=10)
+--- Thread: How do you make a referral system on US? (/showthread.php?tid=621)



How do you make a referral system on US? - lilpanda - 07-01-2017

How would you allow users to make their referral link and when a unique ip accesses that and signs up the user of the referral link receives +1 in their payout column in the database.


How do you make a referral system on US? - mudmin - 07-02-2017

Well...Hmm. Let's work on this. This is kind of a basic overview of how I would walk through that logic to get you started

There is a tool in userspice called Input::get which will probably be your friend here.

What if you made a page called refer.php

Have that page look for the referrer's username in the link. So let's say my link looked like...

https://userspice.com/refer.php?id=mudmin

Then maybe you would add 2 columns to the users table.
Code:
payouts
and
Code:
payouts_paid

refer.php would look something like this...

Code:
$refer = Input::get('id'); //id is the get variable in the link

Then you want to check the database to see if that variable is legit.

Code:
$legitQ = $db->query("SELECT * FROM users WHERE username = ?",array($refer);
//check all usersnames for that link
Code:
$legitC = $legitQ->count();
//how many results did you get

Code:
if($legitC < 1){
Code:
echo "Invalid referral link.";
Code:
}else{
//get the user's account
$
Code:
legit = $legitQ->first();
//since usernames are unique, you only need first()
$oldPayout = $legit->payouts; //how many payouts DID they have
Code:
$newPayout = $oldPayout + 1;
Code:
$db->update("users",$legit->id,'payouts'=>$newPayout);
//give the user credit
//do whatever else you want to do
Code:
}



How do you make a referral system on US? - lilpanda - 07-03-2017

ok thank you very much!