I want release mini update for Hen! script
What it's is?
Button ,,Buy" for buy items from ItemShop show when ,, your coins >= price"
Screen:
How to?
Step 1: Open your itemshop.php in pages folder.
Step 2: Find:
PHP Code:
<tr>
<td colspan="2" class="isBuy"><a href="index.php?s=is_buy&id=<?PHP echo $getItems->id; ?>">Kaufen</a></td>
</tr>
PHP Code:
<tr>
<?php
if($_SESSION['user_coins'] >= $getItems->preis)
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=is_buy&id='.$getItems->id.'">Buy</a></td>';
}
else
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
}
?>
</tr>
Sorry for my bad english.






