I have a UNIX timestamp in a table like 1321521158 and want to get the details from a table for the particular date, like:
$mydate="11/11/2011";
SELECT notes FROM table WHERE `addeddate`=$mydate
How do I get it?
|
|
you can use the mysql date function like:
or you can calculate the starting and ending timestamp for the given day you want to know and then do
|
|||
|
|
|
|
|||
|
|