SitePoint Sponsor

User Tag List

Results 1 to 3 of 3

Thread: Today.php - Build Your Own Database Driven Web Site Using PHP & MySQL

  1. #1
    SitePoint Member
    Join Date
    Feb 2011
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Today.php - Build Your Own Database Driven Web Site Using PHP & MySQL

    Hi,

    I got to try my 1st php script today.php

    This is what i wrote in the txt file:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <title>Today&rsquo;s Date</title>
    <meta http-equiv="content-type"
    content="text/html; charset=utf-8"/>
    </head>
    <body>
    <p>Today&rsquo;s date (according to this web server) is
    <?php
    echo date('l, F dS Y.');
    ?>
    </p>
    </body>
    </html>


    And thats the result on my browser under http://localhost/today.php :

    Today’s date (according to this web server) is
    Warning: date() [function.date]: It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'Europe/Helsinki' for '2.0/no DST' instead in C:\Program Files\Apache Software Foundation\Apache2.2\htdocs\today.php on line 12
    Wednesday, February 23rd 2011.

    Any ideas why i got this Warning message?

    Thanks in advance.

  2. #2
    It's all Geek to me silver trophybronze trophy
    SitePoint Award Recipient ralph.m's Avatar
    Join Date
    Mar 2009
    Location
    Melbourne, Australia
    Posts
    19,939
    Mentioned
    216 Post(s)
    Tagged
    2 Thread(s)
    Hi DKok, welcome to SitePoint!

    Here is a thread that discussed the same issue:

    http://www.sitepoint.com/forums/show...49#post4756349

    See if that helps.

  3. #3
    SitePoint Member
    Join Date
    Feb 2011
    Posts
    2
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Cheers for the info Ralph, appreciate your help and its good to be here

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •