예제 #1
0
파일: save.php 프로젝트: finalclass/nbml
<?php

require_once 'common.php';
$model = new \Blog\TopicModel();
$model->save($_POST['title'], $_POST['body'], $_POST['id']);
header('Location: /');
예제 #2
0
파일: remove.php 프로젝트: finalclass/nbml
<?php

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