OK.. im having trouble at the moment getting the timestamp in the database to work properly..
ive tried using now() time() for it but everytime it has 14 0's
now what other things can i try for it to work
If the timestamp is a MySQL timestamp field, you have to realise that MySQL timestamps are different from everyone else's. time(), for example, doesn't produce a MySQL timestamp. You'll need to use date() to build a MySQL-format timestamp.
thanks... that was gonna be my next option.. but hmm.. wasnt quite sure