<html>
<head>
<style type="text/css">
.sucess { font-family: Tahoma, Verdana, Arial, "MS Serif"; font-size: 10px; color: #003399}
.error { font-family: Tahoma, Verdana, Arial, "MS Serif"; font-size: 10px; color: #993333}
.title { font-family: Tahoma, Verdana, Arial, "MS Serif"; font-size: 10px; color: #0000}
</style>
<title>Log</title>
</head>
<body bgcolor="#FFFFFF">
<?php
require("inc.date_functions.phtml");
require("class.calendar.phtml");
$c = new calendar;
$c->show(1,1,1);
?>
</span><br><span class="title"> - <b>DATA HORA IP USUÁRIO URL EVENTO</b><br>
<?php
require("class.log.phtml");
$print_log = new log();
$print_log->show();
?>
</body>
</html>
|