<?php
session_start();
$acces_auth=$_SESSION['acces_auth'];
if ($acces_auth<>"authorise")
{
	header ("Location: login.php");
}
?>