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

  • SEARCH
  • Home
  • 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 6897653
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:11:46+00:00 2026-05-27T07:11:46+00:00

There seem to be very few tutorials out there about how to write a

  • 0

There seem to be very few tutorials out there about how to write a PHP script to show the “Most Viewed” posts. I’ve found some scripts custom made for WordPress and haven’t been able to get any of them to work for me. The rest are most popular php scripts for programmers.

I have table called news with the fields id, count, timestamp, headline, img, text.
I want to get the 5 most popular posts for the last week showing just number and headline.

How can I go about this?

  • 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-27T07:11:47+00:00Added an answer on May 27, 2026 at 7:11 am

    This will grab 5 records from within the last week with the highest count value

    $sql = "
    SELECT * 
    FROM newsTable 
    WHERE timestamp > DATE_SUB(curdate(), INTERVAL 1 WEEK) 
    ORDER BY count DESC 
    LIMIT 5
    ";
    

    EDIT

    An easy way to increase the count field by 1 and update the timestamp

    $sql = "
    UPDATE yourtable 
    SET count = count + 1, 
    timestamp = NOW()
    WHERE id = " . $post_id
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

There seem to be very different opinions about using transactions for reading from a
Anything out there other than llvm ? libjit doesn't seem very active.. I need
Although there seem to be very few up to date references for OpenGL 3.x
There seem to be a few good pure Python SSH2 client implementations out there,
There seem to be many ways to define singletons in Python. Is there a
There seem to many ways to skin this particular cat - but which is
There seem to be two rival Eclipse plugins for integrating with Maven: m2Eclipse and
There seem to be a number of weird things one could do if one
There seem to be so many color wheel, color picker, and color matcher web
There seem to be many options to create an XML document in .NET. What's

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.