i'm having afew problems converting this into PHP:
rsClean.EOF is a recordset from a stored proceedure pulling *currently* 154 records from a database... the /////// Do Stuff section makes a date comparison and if a file exists that is over 3 days old with a reference number from rsClean it is deleted...
all of this is fine, other than the flipping loop, whats the PHP equivilant of:
DO While Not .EOF?
Code:
--- ASP Version ---
If (Not rsClean.EOF) Then
Do While Not rsClean.EOF
////////// Do Stuff
Loop
End If
all of this is fine, other than the flipping loop, whats the PHP equivilant of:
DO While Not .EOF?