Jump to content

How to randomise selected?


Wayder

Recommended Posts

use2 sql querie.

 

the first one gets the max number off rows in the table, and saves this number into an var.

then use the randomze function from php to generate an random number.

 

now run an second sql querie that also limits the 6 collums (or whatever), and specify in the query the number you let php generate.

 

and you have an random record out off ythe table.

 

this is an example coe that i use.


$q = "SELECT COUNT(*) AS c FROM news WHERE typ = \'news\' AND approved = 1 AND theme <> \'$sms_subj\'";

$result = mysql_db_query($edge_database,$q,$mysql);

$row = mysql_fetch_object($result);

$rnd = rand(1,$row->c);

$q = "SELECT * FROM news WHERE id = $rnd";

$result = mysql_db_query($edge_database,$q,$mysql);

$row = mysql_fetch_object($result);

echo "<p class=edgenormal>";

edge_do_title("Random old article");

?>

<center><a href=newsread.php?newsid=<? echo $row->id; ?>><? echo $row->title; ?></a></center>

</p>

 

i hope this helps:)

Link to comment
https://forums.phpfreaks.com/topic/365-how-to-randomise-selected/#findComment-1213
Share on other sites

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.