current date

A

Anonymous

Guest
hi guys,

To get the current date, is this not just the function date() ?

problaby not :oops:
 
-[Bl@de Runner said:
-"]hi guys,

To get the current date, is this not just the function date() ?

problaby not :oops:
try this:
Code:
$today = getdate();
echo ($today);
 
WiZARD said:
try this:
Code:
$today = getdate();
echo ($today);
That returns the date as an array, it can't be displayed directly.

Personally I find date() to be much more flexible and user friendly :D
 
Jay said:
WiZARD said:
try this:
Code:
$today = getdate();
echo ($today);
That returns the date as an array, it can't be displayed directly.

Personally I find date() to be much more flexible and user friendly :D
yes sure i'm not check, sorry :oops:
 
Back
Top