Hello,
Been fighting all afternoon with the two object-oriented queries of:
$row_calendar = $rs_query_calendar -> fetch_assoc();
and
$row_events = $rs_query_calendar_events -> fetch_assoc();
neither of which would work.
As soon as I in desperation tried the procedural style of:
$row_calendar = mysqli_fetch_assoc($rs_query_calendar);
and
$row_events = mysqli_fetch_assoc($rs_query_calendar_events);
both worked like a dream!!
If nothing hits your consciousness immediately as to why then please do not bother addressing the mystery for me. But your experience tells you something useful you can get across in thirty seconds or less, I woul like to know so I do not repeat the error.
Thank you for your kindness,
KB