<?
 
    // Including the Class File
 
    include("ladezeitclass.php");
 
    
 
    // Make a new instanz of the Class
 
    $time = new ladezeit();
 
    
 
    // start the time stopping
 
    $time->start();
 
    
 
    // end the time stopping
 
    $time->ende();
 
    
 
    // give out the differenz time between start and end
 
    $time->ausgabe();
 
        
 
?>
 
 |