Log in Register FAQ Memberlist Search Welcome to RCF - WHF Forum Index
alt : test.swf
Welcome to RCF - WHF
4fx3.gif 
Contact the Webmasters of RCFContact   Invite a friend to Join usRecommend   Chat in IRCChat   EZ Template Change OptionEZStyle   Listen to Internet Radio while you browse...iRadio   See your private message.Login for PMs   Important LinksLinks
Member Website LinksWeb Links   Play/View our GamesGames   Register.Register
calendar_open_closeCalendar 
Fixed date format for non technical user
Post new topic   Reply to topic View previous topic :: View next topic
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support Add To Bookmarks
Fixed date format for non technical user
PostPosted: 11/26/2005 6:36 AM Reply with quote
Owl
javaidvip
Owl
Posts 153
Word Cnt. 5,208
BDay Feb 2
Sign Aquarius
Sex Sex:Male
Joined: Oct 13, 2005
Local time: 1:03 PM
Location: Rajan Pur
pakistan2.gif
HI

SIR I INTAIL THIS MOD Fixed date format for non technical user

BUT SHOW IN DATE FORMAT

Sat 26 Nov,2005 16:50
Sat 26 Nov,2005 16:50 PM

sir i want show


Sat 26 Nov,2005  04:50
Sat 26 Nov,2005  04:50 PM


provide help
Back to Top
View user's profile Find all posts by javaidvip Send private message [ Hidden ] Visit poster's website Yahoo Messenger MSN Messenger Google Talk
Fixed date format for non technical user
PostPosted: 11/26/2005 7:16 AM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 4:03 AM
Location: St Pete, FL
peace.gif
In the includes/functions_selects.php file, you will find the following:

Code:
//---------------------------------------------------
$date_format_list[] = array('F d Y');
$date_format_list[] = array('F d Y, H:i');
$date_format_list[] = array('F d Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('d F Y');
$date_format_list[] = array('d F Y, H:i');
$date_format_list[] = array('d F Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('l, d F Y');
$date_format_list[] = array('l, d F Y, H:i');
$date_format_list[] = array('l, d F Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('D, M d Y');
$date_format_list[] = array('D, M d Y, H:i');
$date_format_list[] = array('D, M d Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('D d M');
$date_format_list[] = array('D d M, Y H:i');
$date_format_list[] = array('D d M, Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('d/m/Y');
$date_format_list[] = array('d/m/Y H:i');
$date_format_list[] = array('d/m/Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('m/d/Y');
$date_format_list[] = array('m/d/Y H:i');
$date_format_list[] = array('m/d/Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('m.d.Y');
$date_format_list[] = array('m.d.Y H:i');
$date_format_list[] = array('m.d.Y G:i A');
//---------------------------------------------------


This is what I created for this board from that:

Code:
//---------------------------------------------------
$date_format_list[] = array('F d Y');
$date_format_list[] = array('F d Y, g:i');
$date_format_list[] = array('F d Y, g:i A');
$date_format_list[] = array('F d Y, H:i');
$date_format_list[] = array('F d Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('d F Y');
$date_format_list[] = array('d F Y, g:i');
$date_format_list[] = array('d F Y, g:i A');
$date_format_list[] = array('d F Y, H:i');
$date_format_list[] = array('d F Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('l, d F Y');
$date_format_list[] = array('l, d F Y, g:i');
$date_format_list[] = array('l, d F Y, g:i A');
$date_format_list[] = array('l, d F Y, H:i');
$date_format_list[] = array('l, d F Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('D, M d Y');
$date_format_list[] = array('D, M d Y, g:i');
$date_format_list[] = array('D, M d Y, g:i A');
$date_format_list[] = array('D, M d Y, H:i');
$date_format_list[] = array('D, M d Y, G:i A');
//---------------------------------------------------
$date_format_list[] = array('D d M');
$date_format_list[] = array('D d M, Y g:i');
$date_format_list[] = array('D d M, Y g:i A');
$date_format_list[] = array('D d M, Y H:i');
$date_format_list[] = array('D d M, Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('d/m/Y');
$date_format_list[] = array('d/m/Y g:i');
$date_format_list[] = array('d/m/Y g:i A');
$date_format_list[] = array('d/m/Y H:i');
$date_format_list[] = array('d/m/Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('m/d/Y');
$date_format_list[] = array('m/d/Y g:i');
$date_format_list[] = array('m/d/Y g:i A');
$date_format_list[] = array('m/d/Y H:i');
$date_format_list[] = array('m/d/Y G:i A');
//---------------------------------------------------
$date_format_list[] = array('m.d.Y');
$date_format_list[] = array('m.d.Y g:i');
$date_format_list[] = array('m.d.Y g:i A');
$date_format_list[] = array('m.d.Y H:i');
$date_format_list[] = array('m.d.Y G:i A');
//---------------------------------------------------

headbang
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
Fixed date format for non technical user
PostPosted: 11/26/2005 7:45 AM Reply with quote
Owl
javaidvip
Owl
Posts 153
Word Cnt. 5,208
BDay Feb 2
Sign Aquarius
Sex Sex:Male
Joined: Oct 13, 2005
Local time: 1:03 PM
Location: Rajan Pur
pakistan2.gif
HELL SIR

THNAKS I REPLACE CODE

WORK PERFTECT 100%

THANKS
Back to Top
View user's profile Find all posts by javaidvip Send private message [ Hidden ] Visit poster's website Yahoo Messenger MSN Messenger Google Talk
Fixed date format for non technical user
PostPosted: 11/26/2005 7:47 AM Reply with quote
Site Admin
Nightrider
Site Admin
Posts 30756
Word Cnt. 2,628,678
BDay Jul 28
Sign Leo
Sex Sex:Male
Joined: Sep 25, 2004
Local time: 4:03 AM
Location: St Pete, FL
peace.gif
I'm happy to hear that.  You are welcome...

blob8
Back to Top
View all pictures posted by this userView user's profile Find all posts by Nightrider Send private message   AIM Address Yahoo Messenger Phoogle Map ICQ Number
 Post new topic  Reply to topic
Information
Welcome to RCF - WHF Forum Index -> Area 51 - phpBB & Easymod Tech Support

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum
All times are GMT - 5 Hours

Page 1 of 1


Add To Bookmarks

 
  
  


  Google

Powered by phpBB © 2001, 2005 phpBB Group
  ImageShack  
  Putfile  
  TinyURL  
  CommonDreams  
  Log in  

Page generation time: 0.1438s (PHP: 83% - SQL: 17%) - SQL queries: 43 - GZIP enabled - Debug on