Re: [PHP] Need help with timestamp....

2001-07-05 Thread Brian White
As I understand it, * "strftime" takes a format string and an integer timestamp and returns a date string * "date" takes a different type of format string and an integer timestamp and returns a date string In both cases they default to using the timestamp for the current time. SO: what you cod

Re: [PHP] Need help with timestamp....

2001-07-05 Thread Jay Paulson
if you want the current time all you have to do is this.. :) echo date("l d F, Y g:i A") that will out put: Thursday 05 July, 2001 7:52 PM or whatever time your system is at it will echo it in that format.. hope that helps! jay - Original Message - From: "JustinS" <[EMAIL PROTECTED]>