Kann es sein, daß Du keinen Schimmer hast was html und php ist? Das mag sich jetzt hart anhören aber es kommt mir so vor.BennyProdo hat geschrieben:also die seite ist html mit einem php formular drin,
So kann das zum Beispiel aussehen.
datei.php:
Code: Alles auswählen
<!DOCTYPE ...
<html>
<head>
</head>
<body>
<?php
error_reporting(E_ALL);
include 'functions.php';
...Kram...
?>
<form action="...
...
</form>
<?php
//Formularverarbeitung
...
echo $text; //Text aus Formular
?>
</body>
</html>