summaryrefslogtreecommitdiffstats
path: root/easyCRUD/Person.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'easyCRUD/Person.class.php')
-rw-r--r--easyCRUD/Person.class.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/easyCRUD/Person.class.php b/easyCRUD/Person.class.php
new file mode 100644
index 0000000..131b6b3
--- /dev/null
+++ b/easyCRUD/Person.class.php
@@ -0,0 +1,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';
+ }
+
+?> \ No newline at end of file