Warning: date() [function.date]: It is not safe to rely on the system\'s timezone settings. You are required to use the date.timezone setting or the date
to remove this warning from your project
There are 2 ways to do so...
1) date_default_timezone_set('Asia/Kolkata'); include this file in your index.php file This will work only for your current project
2) date_default_timezone_set('Asia/Kolkata'); or inlude this file in your php.ini file This will work for every project
thnx :)