Employee Ride Close Request'."\n".
'Employee Name : '.$ride_data['name']."\n".
'From Location : '.$ride_data['from_location']."\n".
'To Location : '.$ride_data['to_location']."\n".
'Start Time : '.$ride_data['start_time']."\n".
'End Time : '.$_POST['end_time']."\n".
'Reason : '.$ride_data['reason']."\n".
'OTP : '.$otp;
$telegram = new Telegram('1407277292:AAEBSlqqJbMFjxfMjfclsrDMcTTlnM6wu3s');
$content = array('chat_id' => $emp_name['chat_id'], 'text' => $msg, 'parse_mode'=>'html');
$response = $telegram->sendMessage($content);
?>