OP, are you looking to add any function to this? Just displaying a random number is easy. Take this code:
Code:
http://www.site.com/?ref=<?php echo rand(100000,1000000);?>
Where the first number is the lowest value, and the second is the highest value.
So the above code will show a random number between 100,000 and 1,000,000.
Note that this will only display the number, if you want it to function with an actual affiliate system, it a whole other story.
EDIT
If you want to show the number at multiple places you could easily add the random number to a variable, like this:
Code:
<?php $random = rand(100000,1000000);?>
This is a random number <?php echo $random;?>, and here it's again: <?php echo $random;?>