Hi friends,
How do I show an image (yellow.gif) of the script in the 100 to 200 minutes ?
now in this script when $minuts value become below 100 showing 2 images (red and yellow). But I want to show only red.
[php] if ($minuts <= 100) {
print “”;
}
if ($minuts <= 200) {
print “”;
}
else {
print "<img src=green.gif>";
}
[/php]