How do you set Kuwait/Riyadh as default time in php mysql?

mysql, php

Solution

The timezones you are looking for are `Asia/Kuwait` and `Asia/Riyadh`. Riyadh is in Saudi Arabia, not Kuwait, so the timezones for the two locations could well be different.

Problem

How can i set my default time to Kuwait Riyadh This is my code: ``` date_default_timezone_set('Kuwait/Riyadh'); $date=date('Y-m-d H:i:s'); ```

Original source