Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP

Rohin Kansal
PLUS
Rohin Kansal
Courses Plus Student 642 Points

Build A referral system using php and mySQL

Hi. I want to create a referral website using php and mySQL. Can you please help me about how should I create database tables and fields in order to get the best optimized referral tracking.

2 Answers

Carter Meyers
Carter Meyers
3,236 Points

If all you're looking for is basic referral tracking, forgo a dedicated table and just add a column to your existing user table called "referrer". This would be an INT field where you'd insert the referrer's User ID. Keep it simple.