php - How to correct my gmdate method? -
my code working thing $todaystamp shows 3 hours before clock time. , wanna fix it. (gmt+3) still want use gmdate method because don't know how change rest of... how can without broke other codes? thanks... <?php function sendicalemail($firstname,$lastname,$email,$meeting_date,$meeting_name,$meeting_duration,$message1,$place1) { $from_name = "furkan Öksüz"; $from_address = "furk.oksuz4@gmail.com"; $subject = "olusturulan etkinlik"; //doubles email subject , meeting subject in calendar $meeting_description = $message1; $meeting_location = $place1; //where meeting take place //convert mysql datetime , construct ical start, end , issue dates $meetingstamp = strtotime($meeting_date . " utc"); $dtstart= gmdate("ymd\this\z",$meetingstamp); $dtend= gmdate("ymd\this\z",$meetingstamp+$meeting_duration); $todaystamp = gmdate("ym...