Warning: session_name(): Cannot change session name when session is active in /home/chexed5/public_html/includes/sessions.php on line 5
Warning: Cannot modify header information - headers already sent by (output started at /home/chexed5/public_html/includes/sessions.php:5) in /home/chexed5/public_html/includes/sessions.php on line 6 Dating SQL a MySQL RFC 822 Date: Internet Technology
Dating SQL a MySQL RFC 822 Date By: David Rader II on June 25, 2007 @ 6:28 AM
The following text will return RFC 822 compliant date and time via MySQL or SQL.
$sql = ("SELECT *,
FROM example_events
date_format(saved_date, '%a, %d %b %Y %T GMT') as as saved_date
FROM example_events
ORDER BY created_date
ASC");
Where saved date is the date saved in your MySQL database. and % is specifying the MySQL date formats.
Here's what seems to be a good page if you're having trouble with MySQL now() and SQL time Hopefully that will help you on your way to getting your time zone information fixed quick fast and in a hurry, straighten out your time zone.