mirror of
https://gitlab.com/harald.mueller/aktuelle.kurse.git
synced 2024-11-24 02:31:58 +01:00
41 lines
735 B
PHP
41 lines
735 B
PHP
|
<html>
|
|||
|
<body>
|
|||
|
<?php
|
|||
|
error_reporting(E_ALL);
|
|||
|
print_r($_POST);
|
|||
|
//Anwendung von empty()
|
|||
|
if(!empty($_POST['Check']))
|
|||
|
{
|
|||
|
|
|||
|
echo $_POST['Check'];
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//Anwendung von isset()
|
|||
|
if((isset($_POST['Text'])) && ($_POST['Text'] == 'abc'))
|
|||
|
{
|
|||
|
|
|||
|
echo '<br />Der Parameter ist "abc"!';
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//Typpr<70>fung mit regul<75>ren Ausdr<64>cken
|
|||
|
if((!empty($_POST['Text'])) && (preg_match("/^\d+([\.,]\d+)?$/",$_POST['Text'])))
|
|||
|
{
|
|||
|
|
|||
|
echo '<br />Der Parameter ist eine Zahl!';
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
//Pr<50>fung auf verbotene Zeichen mit regul<75>ren Ausdr<64>cken
|
|||
|
if((!empty($_POST['Text'])) && (preg_match("/[<>]/",$_POST['Text'])))
|
|||
|
{
|
|||
|
|
|||
|
echo '<br />Der Parameter enth<74>lt verbotene Zeichen!';
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
?>
|
|||
|
</body>
|
|||
|
</html>
|