I am using XAMPP - PHP and MYSQL servers. When I tried to use following -
getRates(date(\'Y-m-d\'));
function getRates($cDate)
{
$query = \"SELECT * FROM
Try this
1) In httpd.conf (\xampp\apache\conf\httpd.conf) , add the following line:
SetEnv TZ Europe/Moscow
2) Edit php.ini (\xampp\php\php.ini) date.timezone value in [Date] section:
date.timezone = "Europe/Moscow"
3) In my.ini (\xampp\mysql\bin\my.ini) add or replace
default-time-zone = "Europe/Moscow"
Restart Apache and MySQL