Example #1
0
</head>

<body>
<br>
	<table class="principale" width="100%" style="border-style: none;">
		<tr>
			<td><h1><?php 
require_once 'tools/db/DbUtils.php';
require_once 'tools/http/HTTP_REQUEST.php';
if (HTTP_RESQUEST::exist('login') && HTTP_RESQUEST::exist('password')) {
    $login = HTTP_RESQUEST::param('login');
    $password = HTTP_RESQUEST::param('password');
    if ($login == "set" && ($password = "******")) {
        $obj_utils = new DbUtils();
        $obj_utils->connect();
        $obj_utils->setTime();
        $time = $obj_utils->getTime($obj_utils->getCourse());
        $obj_utils->close();
        echo "La valeur du temp de référence est: " . $time;
    }
    ?>
</h1> <?php 
}
?>
			</td>
		</tr>
		
	</table>
</body>
</html>