how to manipulate recordset
Hi,
this is really about coding in php. Since I cant find a php forum here, I hope you guys won't mind me posting this here.
this is the equivalent asp code of what I want to do.
'--------------------------
oRS.CacheSize = 10
intPageCount = oRS.PageCount
intRecordCount = oRS.RecordCount
If intRecordCount > 0 Then
oRS.AbsolutePage = intPage
start = oRS.AbsolutePosition
If CInt(intPage) = CInt(intPageCount) Then
finish = intRecordCount
Else
finish = start + (oRS.PageSize - 1)
End if
End If
'-----------------------------
how can I do the samething in php?
Thanks
|