Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
MYSQL / PHP Time Display
Old 04-20-2005, 02:41 PM MYSQL / PHP Time Display
Skilled Talker

Posts: 61
Trades: 0
I'm using the mysql time format (00:00:00) in a db because I need to order the contents according to ascending time. The problem is that I want to display the times as 6:00 AM instead of 06:00:00, etc.

I've been playing around with several different ideas, but all have failed ultimately. Does anyone know of a good way to do this?

Thanks.
gregory is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 04-20-2005, 04:11 PM
leavethisplace's Avatar
Ultra Talker

Posts: 297
Trades: 0
First problem i had with PHP and mySQL actually, so heres how to fix it.

PHP Code:
function convert_sqltotxt($time) {

    
// Delimiters may be slash, dot, or hyphen
    
list($hour$min$sec) = split('[/.-:]'$time);

    return(
gmdate("h:j A"mktime($hour$min0000)));


where $time is the SQL format, the split will split any time with seperators / . - or :

This should work, im not too sure about using all them zero's though

check out the PHP Manual on mktime() and date()
__________________
A lie gets halfway around the world before the truth has a chance to get its pants on. - Sir Winston Churchill

Please visit my sites:
Please login or register to view this content. Registration is FREE
|
Please login or register to view this content. Registration is FREE
leavethisplace is offline
Reply With Quote
View Public Profile
 
Old 04-20-2005, 04:42 PM
Skilled Talker

Posts: 61
Trades: 0
Cool. I'll give this a shot and let everyone know how it works.

Thanks.
gregory is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to MYSQL / PHP Time Display
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.46900 seconds with 12 queries