Hallo zusammen. Ich habe mir wiedereinmal einen Code zusammengebastelt. er sieht so aus:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Unbenanntes Dokument</title>
</head>
<body>
<?php
$titel = $_POST ["title"];
$text = $_POST ["hrcbox"];
$von = $_POST["von"];
$am = $_POST["am"];
$kennwort = $_POST ["passwort"];
$FilePointer = fopen("index.txt", "a+");
if ($kennwort == "***")
{
fwrite($FilePointer,
?>
<table border="1" cellspacing="0" cellpadding="0">
<tr>
<td width="98" valign="top"><p>Am:<?php
echo $am ;
?>
<br />
Von: <?php
echo $von;
?>
</p></td>
<td width="477" valign="top"><p align="center"><strong> <?php
echo $titel;
?>
</strong></p></td>
</tr>
<tr>
<td width="98" height="114" valign="top"><p> </p></td>
<td width="477" valign="top"><p align="center"><?php
echo $text;
?>
</p></td>
</tr>
</table>
<?php
)
fclose($FilePointer);
}
?>
</body>
</html>
Es heisst jedoch, dass ein ; fehlt. weiss jemand wo das ist?
Mercööö Fubu100