> > I am using qmail-ldap-control, and I using php to write management > > program. But I don't know how to seperate pages if I get so much > > records(This is very easy in mysql by using "select * from sometable > > limit $start, $count", just a "limit" can do it well). > > > > Could someone tell me how to do this in ldap+php, thanks very much. > > You need virtual list views. Not all servers support it. OpenLDAP does > not (yet). Iplanet does.
You can also use a php array, and separate the array for every page you want to display. ie. display array[n,n+10] for displaying each page of ten domains. Greg