Is it possible to loop through the same sc_select recordset twice?
I have recordset created by: sc_select(rs, $check_sql);
Then I want to do something like this but twice:
while(!$rs->EOF)
{
$datetime = $rs->fields[1];
echo $datetime . "<br>";
$rs->MoveNext();
}
but it seem like once $rs reaches EOF it cannot be looped again.
Thanks