Current time: 03-21-2010, 05:48 AM Hello There, Guest! (LoginRegister)


Post Reply 
Convertine dateline to the date
05-15-2009, 09:16 AM
Post: #1
Convertine dateline to the date
How do I go about changing the "dateline" for a thread into the actual date. Example

convert 1147632930 to Jan 10, 2009
Find all posts by this user
Quote this message in a reply
05-15-2009, 09:24 AM (This post was last modified: 05-15-2009 09:24 AM by Tomm M.)
Post: #2
RE: Convertine dateline to the date
You can do this:

PHP Code:
my_date($mybb->settings['dateformat'], {timestamp}); 

Replacing {timestamp} with the variable with the dateline.

Tomm M
MyBB Developer » Marketing Designer & Systems Developer
Find all posts by this user
Quote this message in a reply
06-03-2009, 04:35 AM
Post: #3
RE: Convertine dateline to the date
when i do that, it makes it "Today and yesterday" I simply just want the actual date. Is that possible?
Find all posts by this user
Quote this message in a reply
06-03-2009, 04:01 PM
Post: #4
RE: Convertine dateline to the date
You want

PHP Code:
my_date($mybb->settings['dateformat'], {timestamp}, ""0);  

The 0 will disable the today/tomorrow.

[Image: sig.php?mybb]
MyBB is on Facebook and Twitter
Hosting available, PM for details
Visit this user's website Find all posts by this user
Quote this message in a reply
06-03-2009, 06:45 PM
Post: #5
RE: Convertine dateline to the date
Also is there a way to format it so that instead of numbers it will give me the actual month? Such as July 04, 2009
Find all posts by this user
Quote this message in a reply
06-03-2009, 08:27 PM
Post: #6
RE: Convertine dateline to the date
PHP Code:
my_date("F d, Y", {timestamp}, ""0); 

http://www.php.net/date

Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump: