Jump to content

datetime not working


webwired

Recommended Posts

I have read through php.net and even the datetime help on phpfreaks, all of which tell me this is the correct format for my datetime... This is what is in the mysql database 2006-03-14 15:04:24 in a datetime field, called datetime... this is what I am using to show it, $datetime = date("F j, Y, g:i A", $row[datetime]); Can anyone give me a hint as to what I am doing wrong? It outputs December 31, 1969, 7:33 PM. Here's my code...

[code]
include_once "../cgi-bin/connection.php";
$query = mysql_query("SELECT * FROM paybycheck WHERE paid = '0' ORDER BY datetime DESC");
    while ($row  =  mysql_fetch_array($query))    {
    $datetime = date("F j, Y, g:i A", $row[datetime]);
echo '<a href="paidbycheck.php?id=', $row[id], '">', $datetime . '     ' . $row[name] . '     ' . $row[city] . '     ' . $row[state], '</a><p>';
                                                }
[/code]
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.