ihdnag8
Grünschnabel
hallo
ich erhalte bei der folgenden PHP Code eine Fehlermeldung. Ich weiß nicht wo mein Fehler liegt. (bin ein Anfänger was php betrifft.)
Parse error: syntax error, unexpected '?' in C:\xampp\htdocs\xampp\test.php on line 12
Danke
test.php
ich erhalte bei der folgenden PHP Code eine Fehlermeldung. Ich weiß nicht wo mein Fehler liegt. (bin ein Anfänger was php betrifft.)
Parse error: syntax error, unexpected '?' in C:\xampp\htdocs\xampp\test.php on line 12
Danke
test.php
PHP:
<?php
echo $_POST["Inhalt"]; //line 12
?>
HTML:
<head>
<title>FormEin</title>
</head>
<body>
<form action="test.php" method="post">
<input type="text" name="Inhalt">
<input type="submit" value="OK">
</form>
</body>
</html>