1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Accommodation_Management/models/AccomodationServices.php
2020-12-18 20:29:24 +01:00

11 lines
No EOL
252 B
PHP

<?php
class AccomodationServices extends Model
{
public static function getAll(){
$q = AccomodationServices::$db->prepare('SELECT * FROM AccomodationServices');
$q->execute();
return $q->fetchAll(PDO::FETCH_ASSOC);
}
}