Jump to content

Random SQL query


petenaylor

Recommended Posts

Hi all

 

I am trying to write a piece of code that displays a random banner from a database. Here's my code:

 

$getheaderads = mysql_query("SELECT * FROM `header_banners` WHERE `id` = (SELECT FLOOR( 1 + ( RAND( ) * MAX( `id` ) ) ) ) AND $bannerpage = 1 ORDER BY id DESC LIMIT 1");

 

It works OK without the $bannerpage in, but this determines which page to show it on. It also works if you remove the while random code, but then it'll only who one image.

 

Please help!

 

Many thanks

 

Pete

Link to comment
https://forums.phpfreaks.com/topic/244050-random-sql-query/
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.