コード例 #1
0
ファイル: edit.php プロジェクト: nyan-cat/easybook
function action($www, $response)
{
    $www->query('message:edit', array('message_id' => post::hidden('id'), 'author' => post::text('author'), 'message' => post::textarea('message')));
    $response->location('/');
}
コード例 #2
0
ファイル: post.php プロジェクト: nyan-cat/easybook
function action($www, $response)
{
    $www->query('message:create', array('author' => post::text('author'), 'message' => post::textarea('message'), 'ip' => $www->variable('user:ip')));
    $response->location('/');
}