Jul 25, 2008

Using The Date() Function [php]

Free Web Hosting, No Ads > CONTRIBUTE > Tutorials

free web hosting

Using The Date() Function [php]

shadow skazi
The date() function can be used in a good way, in some cases, and the most common place you would probably see this in use would be on forums. Let's get down to business...

If you would like to display the date, you would have to put the echo tag before the date() function as so...

CODE
echo date("g:i:s");


Which would display as the common hours, minutes, seconds format (ex: 3:32:45). But you can also add wheather it is AM or PM, display the day (Sunday thru Monday), the year, pretty much anything that has to do with date.

Here is a chart to explain what each essential(Which means I wont go over all of them) function does...

a - lowercase AM or lowercase PM
A - uppercase AM or uppercase PM
c - ISO 8601 date (PHP 5 only) Would display as: 2005-02-28T16:17:18+00:00
d - day of the month with zeroes (01 thru 31)
D - Name of the day (Mon thru Sun)
F - Displays the month (January thru December)
g - Displays the hour without zeroes (1 thru 12)
G - Displays a 24 hour format w/o zeroes [military time] (0-23)
i - minutes
m - Numeric representation of a month, with leading zeros (01 through 12)
M - A short textual representation of a month, three letters (Jan through Dec)
n - Numeric representation of a month, without leading zeros (1 thru 12)
s - seconds
z - Day of the year (0-365)
T - Timezone
Y - year (4 digit number)

Hope this helps smile.gif

 

 

 


Reply

Dragonfly
Hi Skazi, thank alot for this. I wanted to use immediately. Since php is server side scripting, the time displayed will not adjust according to the local time (users time) but it will point the server time, is it true? If so what changes can be done? And also the date output is not CSSed or format. How can I change the stylesheet of the output. I'm quite new to php, if you can explain me a little bit more, I would be very happy. Thanks in advance.

Reply

maddog39
What you can do for the CSS thing is just put the date into a separate file like this...

CODE

<?php
echo date("g:i:s");
?>

Then save it as date.php and in your main page or whatever just go...

CODE

<?php
include ('date.php');
?>

and then the date will show up with the stye according to your CSS file on your main page. Hope that solves your problem, always works for me. wink.gif biggrin.gif

Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Similar Topics

Keywords : date, function, php

  1. PHP Function To Add Previous and Next Page Feature
    useful php function (0)
  2. Date Time Lights Temp And Timer, It's Go It All
    (0)
    Here is MY review of this fantastic little clock that I got from China. I was a little worried
    buying from a company that was all the way in China, www.LDUcompany.com but everything went real
    well and may new clock was delivered in less time then they had said. I had first emailed them a few
    times with a bunch of questions and they answered every one of my emails quickly. This clock is
    really neat, every time you flip it on a different side it changes what it tells you and lights up
    and starts flashing in different colors. It is built very well and it is not cheap jun....
  3. Free Web Hosting : Amirborna [screened] [approved]
    Free Website : www.date.trap17.com (3)
    I would like to request free web hosting from Trap17. Please find my application below. Your
    Registered Domain Name or Desired Trap17 Subdomain Name: www.date.trap17.com Account
    Username: Borna Introduction: Hi my name is Amir and I am 17 years old. I love
    computers and everything about computers. Favorite foods -> Chinese (General chicken) and I like
    buffolo wings Favorites video games -> Team Fortress 2, CS, CSS, Diablo 2 Favorite Movie ->
    Anything Chris Tucker, jackass 2 My talent is fast typing /smile.gif" style="vertical-align:mi....
  4. Question Regarding Php Function
    It's all about PHP mail (12)
    I found out many people recommend Trap 17 as their free webhost, and I'm interested too! My
    experience with all free host is having PHP Mail function disabled (and need to choose premium/paid
    package to enable it) /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif"
    /> . Do Trap17 enable php mail function? Because it will be very useful for me as I creating a
    bulletin board (forum). Thank you for answering /biggrin.gif" style="vertical-align:middle"
    emoid=":D" border="0" alt="biggrin.gif" /> .....
  5. Problem With Time/date On My Computer
    (6)
    This strange issue has been happening to me recently. I notice that when I shut down my computer,
    and then start it up the next time, the time and date of my computer remains the same as that of the
    time and date that I shut down my computer, and it continues from that time and date until I adjust
    it manually myself. For example, if I shut down my computer on 3 May 2008, 10pm, even when I switch
    on my computer on 4 May 2008 9am, the date and time shows 3 May 2008, 10 pm. I don't understand
    why, I did not automatically synchronize it with an internet server, and I....
  6. Php Date()?
    timezone is offset (4)
    Hi my timezone is GMT and the code im using to display the time and date is this: CODE
    date('l j F - g:i a') which would then display "Tuesday 25 March - 12:11 am"
    But the time for me at the time was 07:11 am. Anyone know how to tune it so it is with GMT time?....
  7. Endif function?
    (6)
    As you get noticed before, I am studying PHP in examples like using the tutorials as well as books
    itself. Through my readings, I get this function CODE <?php endif; ?> a lot of times.
    So, what do you mean by this function, and what does it do exactly?....
  8. Php - Forms, Date And Include
    Working with POST and GET and also the Date() function (0)
    /--------PHP FORMS, DATE AND INCLUDE TUTORIAL BY FLASHY--------\ Hi and welcome to my
    tutorial. I will show you how to make simple PHP forms with the POST and GET statements. I will
    also show show you the Date() function too, aswell as the include() function. OK, so first you need
    a good understanding of HTML, and you need to create your form using that. So lets start off with
    the HTML form. 1. Create a page called form.html. 2. Insert your standard tags like: CODE
    <html> <head> <title>Working with php forms.</title> </he....
  9. User Permission Function [php]
    Determining User Permissions (3)
    There have been several recent request for methods to restrict access to various pages on a web-site
    based on User Permissions in sites that have a Login System in place. Here is some code showing one
    method to restrict access by providing a sub-set of your site's links based on the User's
    permissions. In this demonstration, I have defined a string for each 'level of user'
    determining which set(s) of links they can view on your site. Normal MySql procedure would be to
    read the User's permission level from a record in the database. For the purpose of ....
  10. 5 Things Not To Do On Your First Date
    (4)
    I have ten tips on what not to do on your first date. If anyone reads this post and wants to post
    more tips just come to me, somertonlord, lord of the somertons. Tip number 1:Don't go on about
    yourself and yourself only, compliment your date by saying I like your hair, you have nice eyes and
    so on and mean it. Tip number 2:Don't boast about your work life or your social life by talking
    about how you got a promotion at work or talking about your new mobile phone because people
    don't want to hear about phones and jobs on a date. Tip number 3:Don't take you....
  11. Online Date Scams
    people living fake lives... (2)
    a few years ago i logged into my msn and saw this girl in my contacts list. i dont remember if she
    added me or i added her, but she was there. and when i opened the conversation window to check out
    who it was, i saw her display picture... this beautiful girl! i didnt care how she got there, i
    just wanted to meet her! so we started talking and we became very close friends. she supposedly
    had left the city and was living somewhere else, far away, so we never could meet in person. we
    talked for over 6 months. around the year of chatting, we fell in love for each oth....
  12. Daiting?
    why do we date? (2)
    just a while ago i stated thinking, this mostly goes out to teenagers those who started dating. why
    are you looking for really beacause at the age of thirteen or even sixteen i dont think you would be
    looking for someone to spend your life with. would you? the reason is that most middle to high
    school reallytionshipd dont last very long months, weeks, days, even hours. if a kid starts dating
    young they probably had a good amout of of girlfriends or boyfriends did they really expect that one
    of them would be their life partner or was it just wanting to be like everybody e....
  13. Reaon-sony Acid-orion Or Fruity Loops
    which do you prefer and which benifits the upto date producer (1)
    OK youve all heard about how manny bits of software are out there for making music rite, i meen
    youhave orion i havnt heard much about that as it apparently seams to be a low end product thers
    reason definatly a high end product thers sony acid pro anouther high ender and theres fruity
    loops around midway id say but thats not all there are loads of programs that allow you to create
    music the question is do you use these programs and if so what one. i personally use fruity loops
    as it has a wide veriety of plugins wich enables the user to be as creative as possib....
  14. Help: Disable All Buttons Inside A Div Element
    How do you write a function to disable all buttons given a div id (8)
    I need help to write a function to disable all buttons iside a div ID. if possible the function will
    disable all buttons even the ones inside child divs belonging to the main div.....
  15. Inkscape, A Open Source Vector App That Support Lot Function.
    An Open Source vector graphics editor, with capabilities similar to Il (0)
    It is common now for using graphics design tools like Adobe Creative Suite, Canvas, CorelDraw etc.
    But it will be high cost. Here has a free open source tool that do most of the work without cost.
    It's called Inkscape. You can work with it like other common apps such as align, layer, export
    to gimp with svg and even more. Screen Shot : URL : www.inkscape.org Sample:
    www.openclipart.org Some Tutorial : blip.tv/file/316576 ....
  16. What To Do On A Date
    Read the title =) (4)
    Some of you have read the post I made about this girl I like, haven't you? Well, again this is
    about her. I'm sooo happy today. I've just discovered that she also likes me! Not
    directly, of course, but today her place was changed to just behind me in class and she threw a pen
    (twice) at me, apologising and asking me to pick it up =) I began to suspect that she liked me. My
    happiness was confirmed when 2 of her friends said to me, "Do you like her?" She likes you! Go
    and ask her out!" I was like, WOW...this is great, what I've always wanted. I....
  17. Yesterday Is My First Date
    not really a good one though... (3)
    Yesterday I went to a shopping mall with my friend (well, she is not my girlfriend...) and we agreed
    to meet at noon. But because of some work she had to do before, we met at the destination place at 1
    PM. Well, that was my first date after all, so I was so nervous to be with her alone. At first, we
    agreed to play ice skating at the shopping mall, but due to a long public holiday (here) so the rink
    is packed with so many people, and that's why we went to the movie instead. There were 4 movies
    showing yesterday, but she had seen 2 of them before with her friends (I&#....
  18. How To Check If Fsockopen Function Is Enabled?
    (2)
    Hi, I have VPS (virtual private server) and I have access to php.ini file. Is there any script that
    will show that fsockopen function is enabled or where do I have to enable it? Searched google and
    here and couldn't find anything. Thanks! ....
  19. Mail() Clone
    A PHP mail() function clone (5)
    A lot of free web hosts have disabled the mail() function so you cannot send emails using PHP. Does
    anybody know of a script that makes a function "like" mail but is able to be installed in a web
    accessible directory and called included into another script and called like that? Or maybe you know
    how to make such a function? I just really need to find a way around the free hosts turning of the
    mail() function. I need to figure out a way to send emails.....
  20. How Good Is This Data Cleaning Function?
    (2)
    Hi all, this is my first function and as part of a script and i just want to know a couple of
    things. here is the code for the function: CODE <? function
    clean($dirty_string) { $muddy_string = stripslashes($dirty_string);
    $murky_string = strip_tags($muddy_string); $clean_string =
    htmlentities($murky_string);      }; ?> So the first thing is how secure is
    it? the script this will be used in connects to a database and sends an email so it needs to stop
    SQL injections and any email ab....
  21. Genuine Help With Smtp And Php Mail() Function
    I need help using the PHP mail() function and the SMTP server on Trap1 (3)
    Hello, I have looked up the solution to this problem numerous times on this forum but cannot seem to
    get a straight answer. I have also read that something called SMTP Authetication is required. I have
    looked up numerous ways this should be done, but I believe it required special protocols. This is
    the code that I tried to use to send e-mail using the SMTP server here at Trap17. CODE
    $email_to = "whoever@whoever.com"; //SEND MAIL TO HERE $subject = "Testing the
    SMTP server"; $message = "This is a test of the SMTP server on T....
  22. Girls - What Kind Of A Date Do You Want?
    (17)
    I'm very intered in finding out what sounds like a good date to girls. If you girls coulds have
    a guy ask you out on a "good" date what would that date involve? Generally a "good" date to a guy
    is any date that ends in sex lol /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0"
    alt="biggrin.gif" /> so no other guys posting pelase!!! Okay, what types of dates
    would you want to be taken out on by the following kinds of guys. 1) Someone you've known for a
    few months and alreayd like. "friends first" etc. 2) Someone you barely know, y....
  23. Personality Test - With Birth Date
    (18)
    If your birthday is on.. Scroll down to find out about your nature.. QUOTE December 23rd -
    January 1st Red January 2nd - January 11th
    Orange January 12th - January 24th Yellow January 25th - February 3 Pink February
    4th - February 8th Blue February 9th - February 18th Green February 19th - February
    28th Brown March1st - Match 10th Aqua March 11 - March 20th Lime March 21 st
    Black March 22 nd - March 31st Purple April 1st - April 10th Navy April 1....
  24. My First Date With A Girl!
    oh ! My God ! (23)
    Buddies , here i am just sharing my FIRST VERY BAD DATE WITH A GIRL ! Its so happened that i was
    just a very new user for internet ! I was very fond of chatting. My one of friend just gave me a
    email address of a girl ! I just add her email address ! one day i was just checking my
    email , then the owner of that ID i mean she online and just send me message . I just start chatting
    with her... so it was a way of very good spending my time.. SO start chatting daily , so it became a
    part of my day... We were in the same city ... One day while just chatting sh....
  25. Muslims Not Allowed To Date
    having sex not married - discussion (8)
    Hello, Me being a Muslim means certain rules apply. I am not allowed to date! You are all
    probaly all shocked and so on! Infact it makes me laugh /laugh.gif"
    style="vertical-align:middle" emoid=":lol:" border="0" alt="laugh.gif" /> . Anyway i suppose you
    want to know why: It is mainly because of the sex thing. Having sex while not married is quite close
    in the list of major sins to killing someone. Also Muslims are commanded to not look at the opposite
    sex. So i am not allowed to look at a girl for example and check if she is 'hot'. Anyway
    just wante....
  26. Include File.php?id=something
    using the include() function (13)
    Well, I am making a full CMS system for my site, and want to make the index.php file to include the
    view.php?id=1 file. I tried with this code, but it didn't work: CODE <?php include
    'view.php?id=1' ?> This is the error I get: CODE Warning:
    main(view.php?id=1) [function.main]: failed to open stream: Invalid argument
    in C:\server\xampp\htdocs\test\index.php on line 1 Warning:
    main() [function.include]: Failed opening 'view.php?id=1' for inclusion
    (i....
  27. How To Use A Link To Call Function In Php?
    (8)
    The title says it all, really. How do you call a function using in PHP? I'm doing a project
    and I stumbled upon this problem. I don't want to use query string in the href part like
    since that would mess up the other part of my code. Can anyone pleae help me? I've pasted the
    code below. /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> Thanksh.
    CODE <?php   function display($x){ //coding goes here.   } ?>
    <html> <body> <p align="center"> <a href="what g....
  28. Final Fantasy Advent Children
    date of the movie (16)
    have someone any idea when is the release of Final Fantasy 7 advent children in america, i know that
    the release in japan is today september 14 but i want to know when is in america. something else,
    the japanese version got subtitles in english?....
  29. Getting List Of Directories And Files Using Php
    PHP Function for Directory and File List (6)
    is there a php function that lists the content of some folder.... example: /New folder new.txt
    left.gif download.zip dc.exe ....so is there..? /rolleyes.gif' border='0'
    style='vertical-align:middle' alt='rolleyes.gif' /> ....
  30. Delphi
    Simple Text Parsing Function (1)
    Because parsing is such an integral part of string manipulation, I took the time to make a quick and
    simple parse function. For you VBers, Delphi is a derivative of Pascal...it's powerful, simple,
    and (best of all) doesn't need external component (eg: ocx files). Hence the code: Code:
    function TForm1.SimpleParse(MainString, BeginString, EndString: string): string; var PosBeginString:
    integer; PosEndString: integer; begin PosBeginString := Pos(BeginString, MainString) +
    Length(BeginString); PosEndString := Pos(EndString, MainString); Result := Copy(MainString, ....

    1. Looking for date, function, php

Searching Video's for date, function, php
Similar
PHP Function
To Add
Previous and
Next Page
Feature -
useful php
function
Date Time
Lights Temp
And Timer,
It's Go
It All
Free Web
Hosting :
Amirborna
[screened]
[approved] -
Free Website
:
www.date.tra
p17.com
Question
Regarding
Php Function
- It's
all about
PHP mail
Problem With
Time/date On
My Computer
Php Date()?
- timezone
is offset
Endif
function?
Php - Forms,
Date And
Include -
Working with
POST and GET
and also the
Date()
function
User
Permission
Function
[php] -
Determining
User
Permissions
5 Things Not
To Do On
Your First
Date
Online Date
Scams -
people
living fake
lives...
Daiting? -
why do we
date?
Reaon-sony
Acid-orion
Or Fruity
Loops -
which do you
prefer and
which
benifits the
upto date
producer
Help:
Disable All
Buttons
Inside A Div
Element -
How do you
write a
function to
disable all
buttons
given a div
id
Inkscape, A
Open Source
Vector App
That Support
Lot
Function. -
An Open
Source
vector
graphics
editor, with
capabilities
similar to
Il
What To Do
On A Date -
Read the
title =)
Yesterday Is
My First
Date - not
really a
good one
though...
How To Check
If Fsockopen
Function Is
Enabled?
Mail() Clone
- A PHP
mail()
function
clone
How Good Is
This Data
Cleaning
Function?
Genuine Help
With Smtp
And Php
Mail()
Function - I
need help
using the
PHP mail()
function and
the SMTP
server on
Trap1
Girls - What
Kind Of A
Date Do You
Want?
Personality
Test - With
Birth Date
My First
Date With A
Girl! -
oh ! My
God !
Muslims Not
Allowed To
Date -
having sex
not married
- discussion
Include
File.php?id=
something -
using the
include()
function
How To Use A
Link To Call
Function In
Php?
Final
Fantasy
Advent
Children -
date of the
movie
Getting List
Of
Directories
And Files
Using Php -
PHP Function
for
Directory
and File
List
Delphi -
Simple Text
Parsing
Function
advertisement



Using The Date() Function [php]



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE