PHP Classes

File: example/com/domain/classes/Car.php

Recommend this page to a friend!
  Classes of Hugo Ferreira da Silva   Lumine   example/com/domain/classes/Car.php   Download  
File: example/com/domain/classes/Car.php
Role: Example script
Content type: text/plain
Description: Entity for "cars" table
Class: Lumine
Object-relational mapping tool
Author: By
Last change:
Date: 18 years ago
Size: 227 bytes
 

Contents

Class file image Download
<?php
#### START AUTOCODE

class Car extends LumineBase {
    var
$__tablename = 'cars';
    var
$__database = 'lumine_example';
    var
$idcar;
    var
$color;
    var
$model;
    var
$person; // many-to-one
    #### END AUTOCODE
}
?>