Skip to content
Advertisement

Create affliate URL in PHP

I’m trying to create an affiliate url like http://example.com/ref/referrer.

I have 2 php files and a .htaccess file. I have a database table called ‘referral’ that stores username of users in a field called ‘referrer’.

index.php

JavaScript

welcome.php (landing page for those who came to site through ref link).

JavaScript

.htaccess file

JavaScript

The problem is that the referral url does not work. When clicked, it’s supposed to load the welcome page, but it doesn’t. Please can someone tell me what I’m not doing right or missing?

Advertisement

Answer

With the suggestions of @RiggsFolly and @UTAlan, here is what I did to make it work, for the sake of others who may be in need of the same solution.

Run below query in your database

JavaScript

db.php

JavaScript

index.php

JavaScript

welcome.php //landing page for those who came to site via referral link

JavaScript

.htaccess file

JavaScript

Credit to Santhosh Veer of AllWebTuts (http://allwebtuts.com) for his insight.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement