i am sending an email to 1000 people. i have a php send email. it works fine. i was wondering, in my query, how can i send it 100 at time.
is it like this:
select * from test limit 0, 100
select * from test limit 100, 100
select * from test limit 200, 100
select * from test limit 300, 100
etc...
thanks.