From e46efced1b2c19ca0f628207b70b28a30fcbc288 Mon Sep 17 00:00:00 2001 From: nicosomb Date: Tue, 9 Apr 2013 15:05:49 +0200 Subject: =?UTF-8?q?utilisation=20de=20jquery=20pour=20traitement=20ajax=20?= =?UTF-8?q?mise=20en=20page=20de=20la=20grille,=20type=20Masonry=20(m?= =?UTF-8?q?=C3=A9thode=20full=20css).=20cf=20ici=20:=20http://designshack.?= =?UTF-8?q?net/articles/css/masonry/=20r=C3=A9organisation=20des=20fichier?= =?UTF-8?q?s=20avec=20un=20fichier=20d=C3=A9di=C3=A9=20pour=20le=20traitem?= =?UTF-8?q?ent=20des=20actions=20(process.php)=20utilisation=20de=20pictos?= =?UTF-8?q?=20=C3=A0=20la=20place=20des=20codes=20h=C3=A9xas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- inc/config.php | 16 ++++++++++++++++ inc/db.php | 21 +++++++++++++++++++++ 2 files changed, 37 insertions(+) create mode 100644 inc/config.php create mode 100644 inc/db.php (limited to 'inc') diff --git a/inc/config.php b/inc/config.php new file mode 100644 index 00000000..f9a4701e --- /dev/null +++ b/inc/config.php @@ -0,0 +1,16 @@ + + * @copyright 2013 + * @license http://www.wtfpl.net/ see COPYING file + */ +define ('DB_PATH', 'sqlite:./db/poche.sqlite'); + +include 'db.php'; +include 'functions.php'; +require_once 'Readability.php'; +require_once 'Encoding.php'; +?> \ No newline at end of file diff --git a/inc/db.php b/inc/db.php new file mode 100644 index 00000000..705fc0c4 --- /dev/null +++ b/inc/db.php @@ -0,0 +1,21 @@ + + * @copyright 2013 + * @license http://www.wtfpl.net/ see COPYING file + */ + +class db { + var $handle; + function __construct($path) { + $this->handle = new PDO($path); + $this->handle->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION); + } + + public function getHandle() { + return $this->handle; + } +} \ No newline at end of file -- cgit v1.2.3