Go Back   CodingForums.com > :: Server side development > PHP

Before you post, read our: Rules & Posting Guidelines

Reply
 
Thread Tools Rate Thread
Enjoy an ad free experience by logging in. Not a member yet? Register.
Old 09-03-2009, 06:36 AM   PM User | #1
govind1986
New Coder

 
Join Date: Aug 2009
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
govind1986 is an unknown quantity at this point
Date Format

hi friends..,
i want to display the time in my webpage in format dd-mm-yyyy.., hw to change yyyy-mm-dd to dd-mm-yyyy and to display in page
govind1986 is offline   Reply With Quote
Old 09-03-2009, 06:38 AM   PM User | #2
Phil Jackson
Senior Coder

 
Join Date: Aug 2009
Location: Mansfield, Nottinghamshire, UK
Posts: 1,547
Thanks: 57
Thanked 148 Times in 147 Posts
Phil Jackson is on a distinguished road
www.php.net - search date()
Phil Jackson is offline   Reply With Quote
Old 09-03-2009, 08:26 AM   PM User | #3
Fou-Lu
God Emperor


 
Fou-Lu's Avatar
 
Join Date: Sep 2002
Location: Saskatoon, Saskatchewan
Posts: 15,635
Thanks: 4
Thanked 2,448 Times in 2,417 Posts
Fou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to allFou-Lu is a name known to all
The easiest way would be to manually format this:
PHP Code:
$sDate '2009-09-02';
$sDate vsprintf('%3$s-%s-%1$s'explode('-'$sDate)); 
Unless of course you want it to say Septemer 2, 2009 instead, in which case using date with either a strtotime or mktime and explodes is the route to go.
__________________
As of PHP 5.5, the MySQL library has been officially deprecated. It is recommended to move to either MySQLi or PDO libraries for your mysql connectivity. See here for help choosing which interface you prefer: http://php.net/manual/en/mysqlinfo.api.choosing.php
Fou-Lu is offline   Reply With Quote
Reply

Bookmarks

Jump To Top of Thread


Thread Tools
Rate This Thread
Rate This Thread:

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

Forum Jump


All times are GMT +1. The time now is 02:43 AM.


Advertisement
Log in to turn off these ads.