PHP Classes

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

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

Contents

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

class Person extends LumineBase {
    var
$__tablename = 'persons';
    var
$__database = 'lumine_example';
    var
$idperson;
    var
$name;
    var
$age;
    var
$eyecolor;
    var
$cars = array(); // one-to-many
    #### END AUTOCODE
}
?>