1
0
aclindsay.com/common.php

13 lines
314 B
PHP
Raw Normal View History

<?php
function get_protocol() {
$protocol = "http";
2014-01-23 23:32:15 -05:00
if ( (isset($_SERVER['HTTPS']) && !empty($_SERVER['HTTPS']
&& $_SERVER['HTTPS'] !== 'off') ||
$_SERVER['SERVER_PORT'] == 443) )
$protocol = "https";
return $protocol."://";
}
$protocol = get_protocol();
$base_url = $protocol.$_SERVER['HTTP_HOST'];
?>