MySQL
  Home arrow MySQL arrow Page 4 - Practical Date/Time examples with PHP and MySQL
Dev Shed Forums  
Administration  
AJAX  
Apache  
BrainDump  
DHTML  
Flash  
Java  
JavaScript  
Multimedia  
MySQL  
Oracle  
Perl  
PHP  
Practices  
Python  
Reviews  
Security  
Smartphone Development  
Style-Sheets  
Web Services  
XML  
Zend  
Zope  
Mobile Linux  
App Generation ROI  
IBM® developerWorks  
Forums Sitemap  
E-Commerce Hosting  
Linux Web Hosting  
Managed Hosting  
Small Business Hosting  
VPS Hosting  
Weekly Newsletter

 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid  
Request Media Kit
Contact Us  
Site Map  
Privacy Policy  
Support  
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
Google.com  
MYSQL

Practical Date/Time examples with PHP and MySQL
By: Mauricio Cuenca
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: starstarstarstarstar / 74
    2004-04-22


    Table of Contents:
  • Practical Date/Time examples with PHP and MySQL
  • The UNIX timestamp
  • How old are you? (exactly)
  • Date Addition and Subtraction
  • Conclusion

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      error-file:tidyout.log Del.ici.ous error-file:tidyout.log Digg
      error-file:tidyout.log Blink error-file:tidyout.log Simpy
      error-file:tidyout.log Google error-file:tidyout.log Spurl
      error-file:tidyout.log Y! MyWeb error-file:tidyout.log Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article

     
     
    ADVERTISEMENT


    Practical Date/Time examples with PHP and MySQL - Date Addition and Subtraction
    ( Page 4 of 5 )

    Suppose that you have a members only area, each user has a password but you want the user to change his or her password every two weeks.

    The first thing you have to do is add a new column to your users table; this column will store the timestamp of the exact date when the user changed his or her password.

    Remember, again, that the timestamp is an unsigned integer, so keep this in mind when creating the table.

    The code for this approach should look like this:


    $ndbconn = mysql_connect("localhost", "user", "password");
    mysql_select_db("mysql");

    $n_start_date = 1062521254; // Timestamp for 2003-09-02 11:47:34 taken from your DB

    // The query adds fourteen days to the given date
    $squery = "SELECT DATE_ADD(FROM_UNIXTIME($n_start_date), INTERVAL 14 DAY)";
    $nresult = mysql_query($squery);
    $s_new_date = mysql_result($nresult, 0, 0);

    // Free the result
    mysql_free_result($nresult);

    // Disconnected
    mysql_close($ndbconn);
    echo "Your password will expire on $s_new_date";

    ?>


    The main function here is DATE_ADD(), this MySQL function perfectly adds any number of seconds, minutes, hours, days or years to a specific date.

    In this example we used it to calculate the exact time fourteen days after the selected date. You can use this function with no risk, it even takes care of leap years.
    For example:

    mysql> SELECT DATE_ADD('2004-02-28 23:50:00', INTERVAL 10 MINUTE); #2004 is a leap year
    +-----------------------------------------------------+
    | DATE_ADD('2004-02-28 23:50:00', INTERVAL 10 MINUTE) |
    +-----------------------------------------------------+
    | 2004-02-29 00:00:00 |
    +-----------------------------------------------------+


    Subtraction is done with the DATE_SUB() function in the same way:

    mysql> SELECT DATE_SUB('2004-03-01', INTERVAL 1 DAY);
    +----------------------------------------+
    | DATE_SUB('2004-03-01', INTERVAL 1 DAY) |
    +----------------------------------------+
    | 2004-02-29 |
    +----------------------------------------+


    And don't worry about December 31st and January 1st transition:

    mysql> SELECT DATE_SUB('2004-01-01', INTERVAL 1 DAY);
    +----------------------------------------+
    | DATE_SUB('2004-01-01', INTERVAL 1 DAY) |
    +----------------------------------------+
    | 2003-12-31 |
    +----------------------------------------+


     
     
    >>> More MySQL Articles          >>> More By Mauricio Cuenca
     

       

    MYSQL ARTICLES

    - MySQL Security Tips
    - Designing a MySQL Database: Tips and Techniq...
    - The Three Most Important MySQL Queries
    - Null and Empty Strings
    - MySQL Server Tuning Tips and Tricks
    - MySQL Query Optimizations and Schema Design
    - MySQL Benchmarking Tools and Utilities
    - MySQL Benchmarking Concepts and Strategies
    - Take Some Load off MySQL with MemCached
    - MySQL Table Prefix Changer Tool in PHP
    - Using the SIGNAL Statement for Error Handling
    - Error Handling Examples
    - Error Handling
    - Completing a Search Engine with MySQL and PH...
    - Paginating Result Sets for a Search Engine B...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 2 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek