does anyone know how to make live javascript time running..
i have this php code
$expiredate = date(\'d m Y G:i:s\', $rdate1); $f_ex_date =
PHP, since it is server-side, can't be live. You'll have to do the date manipulation (at least, the stuff that changes) and update the DOM using JavaScript, which is client-side.
Steve