Tagged Questions

1
vote
4answers
157 views

php + mysql = selecting and displaying rows with different date

guys! I've never met with the selecting definite rows between dates and sorting them properly. Any help would be very useful to understand how should I organize the php + mysql script. I have a table ...
1
vote
1answer
92 views

Problems formating a date

I am trying to write a function to format a date and time for me. I have an almost identical function which formats just a date. That function works fine. I just added some code to try and have it ...
0
votes
1answer
68 views

Problems with basic mktime() in MySQL query

Im trying a basic query to learn about timestamps in db queries. I have a db with a field 'time' which is a timestamp. I have a basic query to return records where "time" is greater than a keyed value ...
0
votes
2answers
246 views

How could I insert date from mktime into MySQL?

I want to insert date in format m-d into database. I used this code $date1=date("m-d",mktime(0,0,0,$month1 ,$day1,1)); The date is inserted as 0000-00-00 in MySQL, and I don't know why. I want ...
0
votes
3answers
54 views

Fetching Results with datetime

I'm trying to fetch results between two time intervals. I've done this before with another web app I built using just Y-m-d, but now having problems with Y-m-d H:i:s. The code is below (masked ...
0
votes
3answers
2k views

convert mysql timestamp to mktime

I have the following MySQL timestamp: 2009-06-23 16:21:48 How can I convert it to a format like mktime()?
-1
votes
1answer
262 views

how to convert time(mktime) to date(mm/dd/yyyy) in php?

ok i have a birthday form that will save as time using mktime, so when it is saved in mysql, it will show something like 634608000.. how can i convert it to mm/dd/yyyy format so that when it is ...