Jump to content

randomising a quote from mysql


davieboy

Recommended Posts

I agree 100% with what Shivabharat advised. A few things I would add though:

 

With the more current versions of php you suppossedly don\'t need to seed rand with srand.

 

I would select min(quoteid), max(quoteid) from yourtable first, then use those values to pass to rand:

 

$randid = rand($minval, $maxval);

 

Then as Shiv suggested just do a select quote from yourtable where quoteid = $randid

 

8)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.