Unholy Prayer 0 Report post Posted April 26, 2007 <?php$date = date([b]F j, o[/b]); //Displays April 25, 2007 (Assuming that is the current date)$time = date([b]g:i a[/b]); //Displays 4:26 PM (Assuming that is the current time)echo "Welcome! The date is $date and the time is currently $time.";?> You can change the date and time formats by changing the text in bold above. For a complete list of time formats, visit the link below.http://us2.php.net/manual/en/function.date.php Share this post Link to post Share on other sites
badea 0 Report post Posted May 20, 2007 Thank u master Very good Share this post Link to post Share on other sites
iGuest 3 Report post Posted February 9, 2012 (edited) <?php$date = date("F j, o"); //Displays April 25, 2007 (Assuming that is the current date)$time = date("h:i s"); //Displays 4:26 PM (Assuming that is the current time)$time_now=mktime(date('h')+5,date('i')+30,date('s'));$datetime=date('h:i:s',$time_now);echo "Welcome! The date is [b]<b>[/b] $date [b]</b[/b]> and the time is currently [b]<b>[/b]$datetime[b]</b>[/b].";?> Edited April 9, 2012 by moderator (see edit history) Share this post Link to post Share on other sites