edit messages from form-data
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m0s
All checks were successful
Build and Deploy Hugo Site / buildAndDeploy (push) Successful in 1m0s
This commit is contained in:
parent
f9df0e1037
commit
4eafcd1459
1 changed files with 7 additions and 6 deletions
|
|
@ -137,13 +137,14 @@ function constructMessage()
|
||||||
$message .= "<hr/><p><b>";
|
$message .= "<hr/><p><b>";
|
||||||
$message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben";
|
$message .= "Kantone, in denen Sie eine Bewilligung (beantragt) haben";
|
||||||
$message .= "</b><br/>";
|
$message .= "</b><br/>";
|
||||||
// foreach ( $arrAllCantons as $abbreviation )
|
foreach ( $arrAllCantons as $abbreviation )
|
||||||
// {
|
{
|
||||||
// if ( isset(filter_input(INPUT_POST, $abbreviation)) )
|
// if ( isset(filter_input(INPUT_POST, $abbreviation)) )
|
||||||
// {
|
if (isset( $_POST[$abbreviation]) )
|
||||||
// $message .= filter_input(INPUT_POST, $abbreviation) . "<br/>";
|
{
|
||||||
// }
|
$message .= $_POST[$abbreviation] . "<br/>";
|
||||||
// }
|
}
|
||||||
|
}
|
||||||
|
|
||||||
$message .= "</p>";
|
$message .= "</p>";
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue