You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
418 B
21 lines
418 B
4 years ago
|
<?php
|
||
|
|
||
|
class ModelLog extends Model {
|
||
|
|
||
|
public function add($message) {
|
||
|
|
||
|
try {
|
||
|
|
||
|
$query = $this->db->prepare('INSERT INTO `log` SET `message` = ?, `timeAdded` = UNIX_TIMESTAMP()');
|
||
|
|
||
|
$query->execute([$message]);
|
||
|
|
||
|
return $this->db->lastInsertId();
|
||
|
|
||
|
} catch (PDOException $e) {
|
||
|
trigger_error($e->getMessage());
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|