Jump to content

Recommended Posts

I'm doing a news site for somebody, and when someone clicks on a certain topic, the script grabs everything from that certain topic.

Then I have it check if there is anything posted for today's date, and then shows that information.

 

Now, if nothing has been posted for today, they want to show yesterday's stuff for that certain topic, if nothing for yesterday, then the day before that, but nothing over days, and I do not know the correct way to do that.

 

I was going to try

<?php
$todaysDate = date("Y-m-d");
$query1 = "SELECT * FROM specials WHERE sport = '$sports' AND poston = '$todaysDate'";
$w = mysql_query($query1);
$numrows = mysql_num_rows($w);
if($numrows == 0) {
$today = date("Y-m-d", strtotime('-1 day'));

}
else {
$today = $todaysDate;
}
?>

 

But I don't understand how to grab yesterday's info then.

 

I hope this makes sense.

 

Can anybody help me out?

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/142802-solved-date-select-from-mysql/
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.