test form FPP App
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 57s
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 57s
This commit is contained in:
parent
c213fd94a0
commit
7ace32025b
1 changed files with 18 additions and 0 deletions
|
|
@ -119,7 +119,25 @@ function constructMessage()
|
|||
// $message .= "Zusatzmodul Tourenplan: " . "<br/>" . $zusatzmodulTourenplan . "<br/><br/>";
|
||||
// }
|
||||
//
|
||||
// Form inputs von Erstbestellung
|
||||
$bestehend = filter_input(INPUT_POST, 'bestehend');
|
||||
if (isset($bestehend))
|
||||
{
|
||||
$message .= "<hr/><p><b>";
|
||||
$message .= ( $lang == "FR" ? "Sélectionnée la version d'application"
|
||||
: "Gewählte Applikations-Version");
|
||||
$message .= "</b><br/>";
|
||||
$message .= $bestehend . "</br>";
|
||||
}
|
||||
|
||||
$servername = filter_input(INPUT_POST, 'servername');
|
||||
if (isset($servername))
|
||||
{
|
||||
$message .= ( ! isset($bestehend) ? "<hr/><p><b>" : "<br/><b>" );
|
||||
$message .= ( $lang == "FR" ? "Nom pour le serveur" : "Name des Webbereichs / der Instanz");
|
||||
$message .= "</b><br/>";
|
||||
$message .= $servername . "</p>";
|
||||
}
|
||||
|
||||
$modulpop2 = filter_input(INPUT_POST, 'modulpop2');
|
||||
if (isset($modulpop2))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue