Welcome to Dream.In.Code
Getting PHP Help is Easy!

Join 136,059 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,554 people online right now. Registration is fast and FREE... Join Now!




Get Dates

 
Reply to this topicStart new topic

Get Dates, how?

Koenie
21 Nov, 2002 - 11:48 AM
Post #1

What?!
*****

Joined: 8 Jul, 2002
Posts: 1,313

I want to have a date that is either on of the following formats:
1: November 21, 2002
2: 11/21/2002
3: 21/11/2002

I want that date to be displayed correctly in this way, according to the local time of the viewer of the page. How do I get a date and how do I convert it to make it be like on of the formats?

Koenie
User is offlineProfile CardPM
+Quote Post

fyrestorm
RE: Get Dates
21 Nov, 2002 - 12:24 PM
Post #2

D.I.C Lover
Group Icon

Joined: 4 Apr, 2002
Posts: 3,103



Thanked: 2 times
Dream Kudos: 228
My Contributions
you would use the php date() function for your date stuff

http://www.php.net/manual/en/function.date.php
User is offlineProfile CardPM
+Quote Post

arniie
RE: Get Dates
21 Nov, 2002 - 12:40 PM
Post #3

D.I.C Addict
****

Joined: 8 Oct, 2002
Posts: 999

here ya go m8

<?php

$whatDay = array( '0' => 'Sunday'
, '1' => 'Monday'
, '2' => 'Tuesday'
, '3' => 'Wednesday'
, '4' => 'Thursday'
, '5' => 'Friday'
, '6' => 'Saturday'
);

$today = getDate();

$textDay = $today["weekday"];

$numDay = $today["wday"];

$mDay = $today["mday"];

$month = $today["month"];

$year = $today["year"];


then were you want to display it:


<?php echo $textDay." ".$mDay." ".$month." ".$year; ?>


or whatever
User is offlineProfile CardPM
+Quote Post

Koenie
RE: Get Dates
22 Nov, 2002 - 04:37 AM
Post #4

What?!
*****

Joined: 8 Jul, 2002
Posts: 1,313

I've worked it out with the PHP.net thing. It's a little different as I hoped it would be, but it is even better! Thanks.

Koenie
User is offlineProfile CardPM
+Quote Post

Acid Reign
RE: Get Dates
22 Nov, 2002 - 08:17 PM
Post #5

Touched by his noodly appendage
*****

Joined: 11 Nov, 2002
Posts: 2,123


Dream Kudos: 2
My Contributions
sorry, i can't resist:

QUOTE

Get Dates, how?


Drive a fast car, look hot and always have lots of money wink2.gif
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/1/08 06:16PM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month