SEEMINGLY RESOLVED (Thank you)
Hello,
This recuperation stuff is not good for the mind.
I eventually sat back and figured out that I should gradually be able to put everything together entirely using your tools.
From a combination of your recordset "show if not empty"
your MySQLi etceteras,
and figuring my way around the PHP date formatting matters, I now have the following, which is working:
<p>testing webassist stuff in here</p>
<?php if ($myMondayCancellations->TotalRows > 0) { // Show if mysqli recordset not empty ?>
<?php } // Show if mysqli recordset not empty ?>
<?php
$wa_startindex = 0;
while(!$mySaturdayClasses->atEnd()) {
$wa_startindex = $mySaturdayClasses->Index;
?>
<?php echo date('F', strtotime($mySaturdayClasses->getColumnVal("classdate"))); // extracting month full name
echo (" ");
echo date('j', strtotime($mySaturdayClasses->getColumnVal("classdate"))); extracting date
?>
<?php
$mySaturdayClasses->moveNext();
}
$mySaturdayClasses->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>
Thank you,
KAB