Tagged Questions
5
votes
7answers
628 views
Finding days between 2 unix timestamps in php
Hay, i have a database holding events. There are 2 fields 'start' and 'end', these contain timestamps. When an admin enters these dates, they only have the ability to set the day,month,year. So we are ...
0
votes
2answers
208 views
problem with mktime and timezone
I would like to display the time stamp of 00:00:00 1 Nov 2010 with the code as below
$day = mktime(0,0,0,11,1,2010);
However, it always display the wrong timestamp from what I intended.
For ...
0
votes
2answers
194 views
PHP swap month and day in timestamp
Right. I was inserting a load of data into a MySQL DB and used the following to generate the timestamp:
$stamp = mktime($t[0], $t[1], $t[2], $d[2], $d[1], $d[0]);
Unfortunately, the day and month ...
0
votes
3answers
3k 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()?