ajout d'url qui déconnait

This commit is contained in:
nicosomb 2013-04-20 10:05:42 +02:00
parent 4e97e6e8b9
commit 2cd263e0bd
1 changed files with 3 additions and 3 deletions

View File

@ -94,10 +94,10 @@ class Sqlite extends Store {
return $entries;
}
public function add() {
public function add($url, $title, $content) {
parent::__construct();
$sql_action = 'INSERT INTO entries ( url, title, content ) VALUES (?, ?, ?)';
$params_action = array($url, $parametres_url['title'], $parametres_url['content']);
$params_action = array($url, $title, $content);
$query = $this->executeQuery($sql_action, $params_action);
}