Forum Moderators: coopster
If I have 1.000.000 rows in a table and need to select multiple rows from it for example
select * from friend where login='fever' will have 200 results
or is it better that I put in an array and split it in php
for example ¦me¦you¦fever¦webmaster¦world¦
select * from friend where login='fever' will have 1 results
$friends=split("\¦",$qeuryresults);
and loop them out...?