Form, Table and Queries for new Tab Pruefung

This commit is contained in:
ma0068
2024-08-29 09:53:34 +02:00
parent d254b9c10b
commit de0fbdb72c
7 changed files with 811 additions and 38 deletions
@@ -0,0 +1,14 @@
<?php
class Note_model extends DB_Model
{
/**
* Constructor
*/
public function __construct()
{
parent::__construct();
$this->dbTable = 'lehre.tbl_note';
$this->pk = 'note';
}
}