Code trái tim
- Mã: Chọn tất cả
<?php
$like = $datauser['thank_duoc']*1;
if ($like >= 0 && $like <30)
{
$thank = '♥';
}
if ($like >= 30 && $like <70)
{
$thank = '♥♥';
}
if ($like >= 70 && $like <150)
{
$thank = '♥♥♥';
}
if ($like >= 150 && $like <300)
{
$thank = '♥♥♥♥';
}
if ($like >= 300 && $like <500)
{
$thank = '♥♥♥♥♥';
}
if ($like >= 500 && $like <1000)
{
$thank = '♥♥♥♥♥♥';
}
if ($like >= 2000)
{
$thank = '<b>[Ủng Hộ Cao]</b>';
}
?>
Code ngôi sao
- Mã: Chọn tất cả
<?php
$like = $datauser['thank_duoc']*1;
if ($like >= 0 && $like <30)
{
$thank = '★';
}
if ($like >= 30 && $like <70)
{
$thank = '★★';
}
if ($like >= 70 && $like <150)
{
$thank = '★★★';
}
if ($like >= 150 && $like <300)
{
$thank = '★★★★';
}
if ($like >= 300 && $like <500)
{
$thank = '★★★★★';
}
if ($like >= 500 && $like <1000)
{
$thank = '★★★★★★';
}
if ($like >= 2000)
{
$thank = '<b>[Ủng Hộ Cao]</b>';
}
?>
Muốn hiển thị bạn chèn code này vào chỗ muốn hiển thị:
- Mã: Chọn tất cả
<?php
echo '<font color="red"><b>' . $thank . '</b>';
?>