Jump to content

[SOLVED] weird date format result


djsl

Recommended Posts

here is what I have

 

I am sending a timestamp using now to a table that is set to datetime through a form

 

this is the entry in the table  2009-08-20 09:47:11

 

I use this to echo in html and it shows up good

 

$notesline1date=mysql_result($result,$i,"notes_line_1_date"); 

$notesline1datenew = date('m j Y', strtotime($notesline1date));

 

<? echo $notesline9datenew; ?>

 

the problem I am having is when no date has been set the table is          0000-00-00 00:00:00

 

but the echo shows up as          11 30 -0001

 

I would like it to be blank, and is there a better way of doing this I am figuring things out as I go.

 

thanks in advance

 

Link to comment
Share on other sites

thanks for the help

 

I tried it and it works great, the only problem that I have now is that I have multiple lines of dates that I want to show

when I add the script to all the lines I get the following

 

 

Fatal error: Cannot redeclare is_empty_date() (previously declared in........

 

thanks

Link to comment
Share on other sites

Fatal error: Cannot redeclare is_empty_date() (previously declared in.......

 

This error means that you have defined is_empty_date() multiple times, like:

 

function is_empty_date() ..

 

a few lines lower:

 

function is_empty_date() ..

 

Make sure function is_empty_date() only appears once.

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.