Ok first open your php welcome file. find were you want to put the link.
add this were you want the link filling in the game address
<a href='www.yougameaddress'/coins.php>Get extra Coins</a>
You can name the file anything just rename the coins part.
You can also change text be changing Get extra Coins.
Now to make the coins.php
Make a new file called what ever you have in the link with the .php at the end
in side it add this.
Code:<?php print "<h3>You got 100 Free Rings</h3>"; if($db->query('users ringincrease=1')) { { die("<h1>You have already Collected your 100 coins.</h1>"); } } $db->query("UPDATE users SET rings=rings+100, ringincrease=ringincrease+1 WHERE userid=$userid"); print "<a href='home.php'>Home</a>"; $h->endpage(); ?>


LinkBack URL
About LinkBacks
Reply With Quote

