16 lines
386 B
PHP
16 lines
386 B
PHP
<?php $app = require '../../../app/inc.php';
|
|
/**
|
|
* Insert a team into team table
|
|
*/
|
|
|
|
use App\Teamtable\Team as Team;
|
|
|
|
$model = $app->model('Teamtable');
|
|
|
|
$team = $model->create(
|
|
new Team()
|
|
);
|
|
|
|
$app->session->flash('Opprettet ny lagmal, <a class="success" href=' . "update.php?item=$team->id" . '>klikk her</a> for å endre på den', 'success', TRUE);
|
|
|
|
$app->redirect('index.php'); |