Hi guys,
Is it possible to have a while statement with two arguments, so for exmaple:
while ($i < numrows OR total): etc etc endwhile;
Thanks.
Basically yes. You do it as you have said.
while ( ($i<$number) || ( $total ) ) { }
Mark.