Ejemplo n.º 1
0
<?php

require_once 'common.php';
$model = new \Blog\TopicModel();
$model->save($_POST['title'], $_POST['body'], $_POST['id']);
header('Location: /');
Ejemplo n.º 2
0
<?php

require_once 'common.php';
$model = new \Blog\TopicModel();
$model->remove($_GET['id']);
header('Location: /');