PHP Classes

File: log_example.phtml

Recommend this page to a friend!
  Classes of Ricardo Costa   MySQL Connection   log_example.phtml   Download  
File: log_example.phtml
Role: Example script
Content type: text/plain
Description: Show the log of connections and query to MySQL Server
Class: MySQL Connection
Manage and Log a connection with MySQL Server
Author: By
Last change:
Date: 21 years ago
Size: 1,204 bytes
 

Contents

Class file image Download
<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 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; HORA &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; IP &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; USUÁRIO &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; URL &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EVENTO</b><br>
<?php
require("class.log.phtml");

$print_log = new log();
$print_log->show();
?>
</body>
</html>