Today i want release mini update for my Premium system for Hen! cms.
What it's is?
Button ,,Buy" for buy premium from ItemShop show when ,, your coins >= price"
Screen:
How to?
Step 1: Open you'r bonus.php in pages folder.
Step 2: Find:
PHP Code:
<tr>
<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>
</tr>
PHP Code:
<tr>
<?php
if($_SESSION['user_coins'] >= $serverSettings['1'])
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=1">Buy</a></td>';
}
else
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
}
?>
</tr>
PHP Code:
<tr>
<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>
</tr>
PHP Code:
<tr>
<?php
if($_SESSION['user_coins'] >= $serverSettings['2'])
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=bonus&id=2">Buy</a></td>';
}
else
{
echo'<td colspan="2" class="isBuy"><a href="index.php?s=spenden">Buy Coins</a></td>';
}
?>
</tr>
that's all
Sorry for my bad english.






