<?php
function subview($file){
	$file = __DIR__.'/../views/sub-views/'.$file;
	include $file;
}
function base_url(){
$local_url="http://localhost/ssda/";
$host="http://".$_SERVER['HTTP_HOST'];
if($host=="http://localhost")
{
$url="$local_url";
}
else
{
$url="$host"."/";
}
	return $url."admin/pages/";
}
function request_uri(){
	return "https://" . $_SERVER['SERVER_NAME'] . $_SERVER['REQUEST_URI'];
}

?>
