Hi Im having a few problems understanding this.....
I run a club, which members can join by using a referral link, which when clicked takes them to the index.php page.
this script is present
<?php
if ($username != "")
$ref= "join.php?username=$username";
else
$ref= "join.php";
echo "<a href=";
echo $ref;
echo " class='tex'>";
echo "Sign Up";
echo "</a>";
?>
which is the link the new member clicks to join.
I want however a simple test that says....
this page belongs to *****
how do I add it using the $username above
Thanks