View Single Post
Old 07-13-2004, 08:27 AM   #6 (permalink)
FaderMonkey
Psycho
 
FaderMonkey's Avatar
 
Location: Orlando, FL
Quote:
Originally posted by SinisterMotives
You'll need to use the MySQL UNIX_TIMESTAMP function in a query to get the timestamp into Unix format, as aoeuhtns suggests.
Please excuse my ignorance, but how do I go about doing that? So far I'm defining my query like this:

PHP Code:
$query 'SELECT * FROM weblog2 ORDER BY entrydate DESC' 
How do I add the UNIX_TIMESTAMP function?
FaderMonkey is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46