i am attempting to add a condition that displays the text "No Events Today" if there are no events on that day. When i added the
else to this block of code it worked for showing no events for the day but it had the side effect of only showing a max of one event for the day even if there are more than one. i'm referring to the $todaysevents var. i am not sure of the logic i should use here. any help?
Code:
while ($event=$DB_site->fetch_array($events)) {
if ($event[eventdate]==vbdate("Y-m-d",time())) {
$eventsubject=htmlspecialchars($event[subject]);
$todaysevents="
<li><smallfont><b><a href=\"$bburl/calendar.php?s=$session[sessionhash]&action=getinfo&eventid=$event[eventid]\">$eventsubject</a></b></smallfont></li>";
} else {
$todaysevents="<li><smallfont><b>No Events Today</b></smallfont></li>";
}
}