i have the infamous piece of code...but i don't know how to get it to do what i want...
<? echo date("l F d Y h:i" ,time()); ?>
what i really want is just the date...in this format to be created -> 12.07
help please thank you...jv
Look at the documentation, http://www.php.net/manual/en/function.date.php, all the codes are there:
echo date("m.d" ,time());
Diego
Or you could just go echo date("m.d"); since that will return it for the current time anyway 🙂