Jump to content

Random Number Function?


Solarpitch

Recommended Posts

Hey Guys,

 

Just wondering how I can achieve this. I want to query a database table and return the min and max id of the table. so if there's 3020 records it will return..

 

min = 1

max = 3020

 

I then need to generate a random number between these two values.

Link to comment
Share on other sites

$selectHigh = "SELECT * FROM table ORDER BY id DESC";
$selectLow = "SELECT * FROM table ORDER BY id ASC";
$queryHigh = mysql_query($selectHigh) or die(mysql_error());
$queryLow= mysql_query($selectLow ) or die(mysql_error());
$high = msyql_fetch_assoc($queryHigh);
$low= msyql_fetch_assoc($queryLow);

srand ((double) microtime( )*1000000);
$random_number = rand($low['id'],$high['id']);
echo "$random_number";

 

something like that

Link to comment
Share on other sites

Or just do one query

 

$query = "SELECT MIN(id) as min, MAX(id) as max FROM table";
$result = mysql_query($query);
$record = mysql_fetch_assoc($result);
$random_number = rand($record['min'], $record['max']);

 

Note, as of v4.2.0 srand() is not necessary

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.