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/Accomodation.php
2020-12-18 20:29:24 +01:00

11 lines
No EOL
261 B
PHP

<?php
class Accomodation extends Model
{
public function getByEmail($email){
$q = Accomodation::$db->prepare('SELECT * FROM Accomodation WHERE UserEmail = ?');
$q->execute(array($email));
return $q->fetch(PDO::FETCH_ASSOC);
}
}