Forum Moderators: coopster
Everything is working fine except that the date field in the database is not formatted in a readable format. When I call this field the date comes up as: 1060225148
That is how the field is in the database. Is there anyway that when I call it in the .php page that I can format it?
I am calling in my fields like this:
<?=$option_row['date_create']?>
Thanks is advance.
Randy
<?=$option_row['date_create']?>"
But when I try to format the above date I just get todays date:
<?=$option_row['date_create'] = date("F j, Y")?>"
Is there something wrong in the way I set it up?