Jump to content

[SOLVED] Basic datetime question


papaface

Recommended Posts

where would I put that?

Currently my data is taken from the db like this:

$selectposts = mysql_query("select posts_name,posts_content,submitted_date from posts where shoutboxes_unique_id='{$_id}' order by submitted_date desc LIMIT $_start, $_limit");

 

submitted_date is the date i want to format

$selectposts = mysql_query("select posts_name,posts_content,DATE_FORMAT(submitted_date,'%H:%i:%s') AS fdate
from posts 
where shoutboxes_unique_id='{$_id}' 
order by submitted_date desc LIMIT $_start, $_limit");

//the $row['fdate'] would be the formatted date

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.