Jump to content

Random mySQL


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:

 

(I am getting $bannerpage from the URL)

 

$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 show one image.

 

Please help!

 

Many thanks

 

Pete

 

Link to comment
Share on other sites

can you post some more info please?

at a glance it seems you're confusing $bannerpage with a database field name, seems you need something more in the lines of:

 

$getheaderads = mysql_query("SELECT * FROM header_banners WHERE `FIELDNAME` = '$bannerpage' ORDER BY RAND() LIMIT 1");

(change FIELDNAME to whatever you field is called)

 

but I don't know your database structure and you provided very little information, so I cant be sure.

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.