예제 #1
0
파일: index.php 프로젝트: slim/floos
<?php

require "../../lib/compte.php";
Compte::$db = new PDO('sqlite:../../floos.db');
Compte::$db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_WARNING);
$compte = Compte::charger($_POST['compte']);
$compte->debiter($_POST['montant'], $_POST['categorie'], $_POST['libelle']);
header("Location: " . $_POST['c'], TRUE, 303);