David Turton wrote:
> Sounds like an option, but I want each new result set to be random, not just 
> starting from a different point. I can't off the top of my head see how that 
> would do it.

How are you randomizing the result set? If you're using mysql's rand() 
function, you could set a seed.

eg,

select * from table order by rand(userid)

order by rand() isn't particularly efficient though.

-- 
Tim Oliver
Software Engineer

160 Cashel Street (Level 2)
PO Box 22 128  Christchurch  New Zealand
P +64 3 377 0007  F +64 3 377 6582
E [EMAIL PROTECTED]

www.e2media.co.nz


--~--~---------~--~----~------------~-------~--~----~
NZ PHP Users Group: http://groups.google.com/group/nzphpug
To post, send email to [email protected]
To unsubscribe, send email to
[EMAIL PROTECTED]
-~----------~----~----~----~------~----~------~--~---

Reply via email to