Login   Register  
PHP Classes
elePHPant
Icontem

File: example.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2003-12-30 02:32
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();
    
?>