Hartwig: Formular und Variable

Beitrag lesen

So gehts ja nich:

<html>
<head>
</head>
<body>
<?php
echo "$titel<br>\n$inhalt";
?>
</body>
<html>

Hallo,
wenn in der php.ini "register_globals" auf off gesetzt ist mußt Du die Variablen erst anholen:
<?php
$titel=$_REQUEST['titel'];
...
?>
<html>

<head>
</head>
<body>
<?php
echo "$titel<br>\n$inhalt";
?>
</body>
<html>

Dann sollte es klappen.