I'm trying to display all records, ran the msqli repeat region, code added, but show nothing and I get no errors. The file is exhibitions2.php
<?php
$Recordset1 = new WA_MySQLi_RS("Recordset1",$exhibitions_cx,10);
$Recordset1->setQuery("SELECT * FROM exhibitions_tbl");
$Recordset1->execute();
?>
<?php
$wa_startindex = 0;
while(!$Recordset1->atEnd()) {
$wa_startindex = $Recordset1->Index;
?>
<?php
$Recordset1->moveNext();
}
$Recordset1->moveFirst(); //return RS to first record
unset($wa_startindex);
unset($wa_repeatcount);
?>


