Tagged Questions

1
vote
1answer
361 views

date_default_timezone_set FOR Europe/London did not return correct time

Hye when i use following code to get current uk/london time, it gave wrong time. at testing time current london time was:02:11:16 PM, Wednesday 01, June 2011 but i got using following code: 06/02/11 ...
1
vote
3answers
114 views

Time how to store it

Ok, i'm a bit confused. I am working on a project that have to store some time() in the database. It seems to me that for better flexibility i should store it as timestamp so that i could make ...
1
vote
2answers
563 views

php/mysql - date_format and the time portion

Apologies if this has already been answered many times, but I was unable to find the answer and I was flummoxed. I have a mysql query which seemingly outputs the result I want when I run it in the ...
0
votes
2answers
57 views

MySQL: is it possible to format UNIXTIME within a result table?

everyone. I am brand new to SQL and I am using it within a Drupal instalation. I would like to know if it is possible to format the results I get (in UNIXTIME) into a DATE TIME format (human-readable, ...
0
votes
2answers
70 views

date_format PHP using a mySQL call

I am having trouble formating the dates that are being returned from my mySQL database. Here is the code that I am trying to use: <?php function get_gold_time() { $goldquery = ...
0
votes
3answers
292 views

Mysql query : date_format and sprintf()

I want to use sprintf() along with date_format in a MySQL query. Here is query: mysql_select_db($database_exdb, $expdb); $query_eventeditrs = sprintf("SELECT eventid, groupid, title, ...
0
votes
2answers
95 views

MySQL Date_Format based on today's date and another column?

I am aware of the MySQL Date_Format function but am looking to achieve the following: I have on column with a day date in 2 digit format (01-30). I am trying to update another date formatted field ...
0
votes
2answers
105 views

PHP - Converting a string into various date formats

I am new to PHP and cannot figure out the best method to convert two strings I have from URL params. I would like to convert: "August 2010" to ---> "2010-08-%" and also: "2010" to ---> "2010-%-%" ...
0
votes
4answers
2k views

MySQL/PHP update query with dates not updating

Bit of a strange problem here... I've got an update query that isn't working, and I can't for the life of me work out why! My table has two three fields - 'id' (int, auto increment), 'date' (date), ...
0
votes
4answers
8k views

I need to change the date format using php

Hi I have looked at a question already posted about this and tried to adapt my code to do a simlar thing. Basicly I have a field in my mysql database that has the date in this format yyyy-dd-mm i need ...