Thanx for your input about date & time...
Here's some functions that worked for me after some searching...
function currenttime() {
-snip- lot's of code.
Hi Gustav:
Not meaning to embarrass, but your code could be shortened
considerably by using date(), like so:
Your lengthy -- function currenttime()
can be replaced simply with:
echo("Date: " . date('Y\-\ m\-\ d') . "<br/>" );
and your -- function currentdate()
can be replaced with:
echo("Time: " . date('h\:\ i\:\ s') . "<br/>" );
If you don't like the spaces in the output, then strip them out, like so:
$date = date('Y\-\ m\-\ d');
$date = str_replace(" ", "", $date);
echo("Date: " . $date. "<br/>" );
and
$date = date('h\:\ i\:\ s') ;
$date = str_replace(" ", "", $date);
echo("Time: " . $date. "<br/>" );
You can find more code examples at:
http://www.weberdev.com/AdvancedSearch.php?searchtype=title&search=date&Submit1.x=0&Submit1.y=0
tedd
--
--------------------------------------------------------------------------------
http://sperling.com
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php