| Current Path : /home/semix18/public_html/pogtech.pl/app/model/ |
| Current File : /home/semix18/public_html/pogtech.pl/app/model/messagesDB.class.php |
<?php /*windu.org model*/
class messagesDB extends ekeyDB
{
public function add($data) {
$this->insert($data);
}
public function deleteById($id) {
$this->delete($id);
}
}
?>