Ohne Brille:
$eingabe = $_POST(eingabe); ... Fatal error: Array callback has to contain indices 0 and 1
Mit Brille:
$eingabe = $_POST['eingabe'];
Ohne Brille:
$eingabe = $_POST(eingabe); ... Fatal error: Array callback has to contain indices 0 and 1
Mit Brille:
$eingabe = $_POST['eingabe'];