This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/teamtable/edit/add.php

10 lines
294 B
PHP
Raw Normal View History

2022-02-15 11:26:15 +00:00
<?php
$app = require '../../../app/inc.php';
$model = $app->model('Teamtable');
$id = $model->addEmptyTeam();
2022-02-15 12:07:18 +00:00
$app->session->flash('Opprettet ny lagmal, <a class="success" href=' . "update.php?item=$id" . '>klikk her</a> for å endre på den', 'success', TRUE);
2022-02-15 11:26:15 +00:00
$app->redirect('index.php');