[PHP] php, mysql How to do a random selection and limit response?

2004-03-24 Thread Leonard B Burton
greetings, I would like to do a random selection in mysql [select * from members order by rand() limit $limit] and then I'd like to insert the items selected into a table [named already_selected] with a datetime stamp to make sure one item is only sleceted once over a defined period of time.

Re: [PHP] php, mysql How to do a random selection and limit response?

2004-03-24 Thread John W. Holmes
From: Leonard B Burton [EMAIL PROTECTED] I would like to do a random selection in mysql [select * from members order by rand() limit $limit] and then I'd like to insert the items selected into a table [named already_selected] with a datetime stamp to make sure one item is only sleceted once