hacktheplanet
New Member
- Messages
- 12
- Reaction score
- 0
- Points
- 0
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.
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();
?>
Last edited: