PHP Classes

File: example.php

Recommend this page to a friend!
  Classes of Martin Lebert   Quickload   example.php   Download  
File: example.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Quickload
Load classes from multiple directories
Author: By
Last change: Accessible without user login
Date: 15 years ago
Size: 261 bytes
 

Contents

Class file image Download
<?php

// this is the only include required
require_once('autoload.php');


$dr600 = new Motorbike("Suzuki DR600 '89");

echo
'Starting up '.$dr600->model.'<br><br>';

while(!
$dr600->isStarted)
{
   
$dr600->kickstart();
    echo
'<br>';
}


?>