PHP Classes

File: test.php

Recommend this page to a friend!
  Classes of Mohamed Elmahdy   Error Talk   test.php   Download  
File: test.php
Role: Example script
Content type: text/plain
Description: test error talk in action
Class: Error Talk
Track and log PHP runtime errors
Author: By
Last change: vv
Date: 12 years ago
Size: 310 bytes
 

Contents

Class file image Download
<?php
   
  
/**
  * all configuration needs to be edit found at errorTalk::initialize function
    */

  
include 'class.errortalk.php';

  
errorTalk::initialize();
  
  
errorTalk::errorTalk_Open(); // run error talk object

  
echo $test; // Run-time notices (Undefined variable: test)

?>