anyone see anything wrong with this? no error, just not evaluating anything unless i remove the AND .....
$commenticon = '';
if ($totalcomments >= 1 AND $totalcomments < 5) {
$commenticon = $image;
} elseif ($totalcomments >= 5 AND $totalcomments < 15) {
$commenticon = $image . $image;
} elseif ($totalcomments >= 20) {
$commenticon = $image . $image . $image;
}