View Single Post
Old 07-13-2004, 08:55 AM   #7 (permalink)
SinisterMotives
Junkie
 
You'll probably have to replace the asterisk with the actual names of the fields:

PHP Code:
$query 'SELECT field1, field2, field3, UNIX_TIMESTAMP(entrydate) FROM weblog2 ORDER BY entrydate DESC'
I've never actually worked with MySQL timestamps, so I don't know if that will work correctly in your case. That's just how I think it should work.
SinisterMotives 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