Projekt

Obecné

Profil

Stáhnout (305 Bajtů) Statistiky
| Větev: | Revize:
1 a4f48ab9 horkym
<?php
2
3
require_once '../model/db/db-web.php';
4
5
class DAO {
6
  
7
    protected $dbh;
8
  
9
    public function setDB($dbh) {
10
        $this->dbh = $dbh;
11
    }
12
13
    public function delete($id) {
14
        $query = "DELETE FROM pom WHERE id='$id'";
15
        $stmt = $this->dbh->executeQuery($query);
16
    }
17
    
18
}
19
20
?>