1 | <?php |
||
9 | class DatabaseHelper |
||
10 | { |
||
11 | public $dbConn; |
||
12 | |||
13 | /** |
||
14 | * This is a constructor; a default method that will be called automatically during class instantiation. |
||
15 | */ |
||
16 | public function __construct($dbConnect) |
||
20 | |||
21 | /** |
||
22 | * This method creates a particular table. |
||
23 | * |
||
24 | * @param tableName |
||
25 | * $return boolean true or false |
||
26 | */ |
||
27 | public function createTable($tableName, $conn = null) |
||
39 | } |
||
40 |