Originally posted by sgoku01
You want to change the format it's displayed (like dd-mm-yyyy)?
Then you can do this:
echo "date is: ".date("d-m-Y");
echo "<br>time is: ".date("H:i");
This will display something like this:
date is: 04-01-03
time is: 23:54
If you need more formats, tell me 🙂 [/B]
thanks, but i need only simple
$today = date(F d);
echo "today, $today...blah blah"
It works well, however, it returns server date = USA date. I need european one. It is Jan 03 in USA and Jan 04 In europe now when I'm printing this 🙂 my script still returns Jan 03 and everything works as it would be still Jan 03, While really it is 04 in Europe. Thats all 🙂