summaryrefslogtreecommitdiffstats
path: root/easyCRUD/Person.class.php
blob: 131b6b323daacbc82d427038a58d97dcc1b1885f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php 
	require_once("easyCRUD.class.php");

	class Person  Extends Crud {
		
			# Your Table name 
			protected $table = 'persons';
			
			# Primary Key of the Table
			protected $pk	 = 'id';
	}

?>