Fibinger Ádám
2020-09-10 f2e0b5357a6f019780773cb87cc5c633b27c88f2
save-teams.php
@@ -2,19 +2,34 @@
include_once "common/base.php";
if (empty($_POST['json'])) {
    header('Location: /generator/form.php', true, 302);
if (empty($_POST['json']))
{
   header('Location: /generator/form.php', true, 302);
}
$teams = new \EOG\Models\TeamList();
if (!$teams->fromJson($_POST['json']))
{
   echo "Nincs benne becsekkolt csapat.";
   return;
}
$success = false;
if ($teams->fromJson($_POST['json'])) {
    $success = file_put_contents(OVERLAY_DIR . 'teams.json', $teams->getJson());
$success = file_put_contents(TEAMS_JSON, $teams->getJson());
if (!$success)
{
   var_dump($teams->getJson());
   var_dump(is_writable(TEAMS_JSON));
}
if ($success) {
    header('Location: /generator/form.php', true, 302);
} else {
    echo "Szar van a palacsintában";
if ($success)
{
   header('Location: /generator/form.php', true, 302);
}
else
{
   echo "Szar van a palacsintában: " . TEAMS_JSON;
}