Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 594949
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T16:00:31+00:00 2026-05-13T16:00:31+00:00

Okay… I’m lost (again). How can I make a custom seed for rand() that

  • 0

Okay… I’m lost (again). How can I make a custom seed for rand() that will keep the pick from the database for a specific period of time: 10 minutes, 1 hours, 1 day, etc.

I use this:

$query = 'SELECT * FROM table order by rand () LIMIT 1';

To get a random pick every time I refresh the page. I’ve been reading for days, but I just can’t find an example that explains how to make a custom seed that will keep the selection for a specific period of time. Please help me… sighs

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T16:00:32+00:00Added an answer on May 13, 2026 at 4:00 pm

    As Dominic Rodger said – order by rand is horrible.
    But I find using cron too big a gun for the job. (especially that You don’t know how)

    You should rather generate a random integer number in php and store it and pass it to the mysql to something like that:

    SELECT * FROM table WHERE id=(MOD('.$php_generated_random.', LAST_INSERT_ID())+1)
    

    it gets a big random number and does modulo, so that it doesnt go over the table length.

    This has a problem with LAST_INSERT_ID() though. Your mysql may return 0 there in many cases.

    So the good’n’safe way to do that would be:

    1. check if it’s time to generate new random
    2. if so, then get the max id from table (assuming that table length changes sometimes)
    3. generate a random number to be an id
    4. store the id and generation time

    and do only select where id=$sth

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Okay, here's the scenario. I have a utility that processes tons of records, and
Okay, I've seen but haven't programmed in C# before. You can assume I'm competent
Okay, we know that the following two lines are equivalent - (0 == i)
Okay, in python one can do this: def foo(monkeys): def bar(monkey): #process and return
Okay, so I have a snippet of code from a website containing a button:
Okay, I'm creating a program from a single class, let's call it John class.
Okay, I'm trying to make a quick little class to work as a sort
Okay so what I have is a table that keeps track of history on
Okay, first some background, I can't use any javascript library except YUI for this
Okay i have this problem with every page i make. im not sure what

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.