Jump to content

search date


dayang

Recommended Posts

So the entires in your database follow the format of YYYY-MM-DD HH:MM:SS for example 2009-05-10 11:12:13?

 

And you want to search using just a date value of 2009-05-10?

 

If that is indeed the case you can use the LIKE function when searching as such

 

$date = '2009-05-10';

"SELECT * FROM date WHERE field LIKE '%$date%'"

 

This will retrieve all values that include 2009-05-10

Link to comment
https://forums.phpfreaks.com/topic/158212-search-date/#findComment-834508
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.