From 7ace32025b31192b1c7fbecc8cd025b435741136 Mon Sep 17 00:00:00 2001 From: bettina Date: Fri, 28 Jun 2024 16:28:25 +0200 Subject: [PATCH] test form FPP App --- static/php/message.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/static/php/message.php b/static/php/message.php index 7cda650..400c666 100644 --- a/static/php/message.php +++ b/static/php/message.php @@ -119,7 +119,25 @@ function constructMessage() // $message .= "Zusatzmodul Tourenplan: " . "
" . $zusatzmodulTourenplan . "

"; // } // + // Form inputs von Erstbestellung + $bestehend = filter_input(INPUT_POST, 'bestehend'); + if (isset($bestehend)) + { + $message .= "

"; + $message .= ( $lang == "FR" ? "Sélectionnée la version d'application" + : "Gewählte Applikations-Version"); + $message .= "
"; + $message .= $bestehend . "
"; + } + $servername = filter_input(INPUT_POST, 'servername'); + if (isset($servername)) + { + $message .= ( ! isset($bestehend) ? "


" : "
" ); + $message .= ( $lang == "FR" ? "Nom pour le serveur" : "Name des Webbereichs / der Instanz"); + $message .= "
"; + $message .= $servername . "

"; + } $modulpop2 = filter_input(INPUT_POST, 'modulpop2'); if (isset($modulpop2))