does anyone have the code to where i can have the time
printed on my home page like for example
 Monday, January 19, 2003
The PHP Manual has this code, under the date() function (www.php.net/date).

echo date ("l, F j, Y");

 also I want to have it state when the users login in
it says
welcome back, (name)
The PHP Manual can help you out on this one, too: www.php.net/echo or www.php.net/ print

echo "welcome back, $username";


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Reply via email to