PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Wesley Barbaresco   Wsy Logs   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example
Class: Wsy Logs
Write and read log files
Author: By
Last change:
Date: 20 years ago
Size: 230 bytes
 

Contents

Class file image Download
<?
   
   
/*
     * Controll of log files
     *
     * Wbarbaresco - Out/2003
     */

   
require "wsy_log.php";
   
   
$file = "logs.txt";
   
   
$l = new wsy_log( $file );
   
$l->load();
   
$l->insert("Register ".md5(microtime())."");
   
$l->details();
   
?>