10 lines
278 B
PHP
10 lines
278 B
PHP
|
<?php
|
||
|
$app = require '../../../app/inc.php';
|
||
|
|
||
|
$model = $app->model('Teamtable');
|
||
|
|
||
|
$id = $model->addEmptyTeam();
|
||
|
|
||
|
$app->session->flash('Opprettet ny lagmal, <a href=' . "update.php?item=$id" . '>klikk her</a> for å endre på den', 'success', TRUE);
|
||
|
|
||
|
$app->redirect('index.php');
|