Jump to content

Today added


domic

Recommended Posts

Hy,

In my mysql database is row date, and it is in format 00-00-00 00:00:00

And I want, in php file, show how many items is added today...

So, $query="SELECT * FROM table WHERE date="[b]TODAY[/b]"";

how to put this correctly?
Link to comment
Share on other sites

[!--quoteo(post=371044:date=May 3 2006, 01:11 PM:name=domic)--][div class=\'quotetop\']QUOTE(domic @ May 3 2006, 01:11 PM) [snapback]371044[/snapback][/div][div class=\'quotemain\'][!--quotec--]
how to put this correctly?
[/quote]

$query="SELECT * FROM table WHERE date=NOW();";

As long as your dates use the format 00-00-00 00:00:00 then you use the NOW() function in MySQL

instead of [b]TODAY[/b] use [b]NOW()[/b]

The two functions that may be helpful to anyone reading this would be NOW() and CURDATE()

[b]NOW()[/b] will return the date/time in the format "00-00-00 00:00:00"

[b]CURDATE()[/b] will return the date in the format "0000-00-00"
Link to comment
Share on other sites

But it's always easier if your dates were stored in the form of unix timestamps...that way, queries are easy as pie...and you can do any date formatting you want, [i]after[/i] you pull the data from the db. :-)
Link to comment
Share on other sites

Ok, but I don't need "now", i only want today, so from that date i need this 00-[b]00[/b]-0000 00:00:00

Because, if I use this variable: $num=mysql_numrows($result); it will always be 0.
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.