1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
|
<html>
<head>
<title>Tagebuch</title>
</head>
<body>
<?$text=$HTTP_POST_VARS['text'];
$title=$HTTP_POST_VARS['title'];
// Code von Unicorn/N. Heppler. Verändern und Verwenden auf Webseiten erlaubt, solange dieser Verweis drin bleibt.
$time = time();
$datum = date("d.m.Y, H:i", $time);
$datei = fopen("t_$tagebuch.php","a+");
$inhalt="<br><table border="0" cellpadding="5" cellspacing="0" width="400" style=" border-style: dotted; border-width: 1; font-family:Verdana; font-size:12px">
<tr>
<td width="400" align="center"> $datum, <b>Eintrag von $uname: $title,</b> <br> <br> $text</td>
</tr> <tr>
<td align="center"> <i>Bewertung</i><br></td> </tr>
</table>";
fwrite($datei, $inhalt);
fclose($datei);
?>
<table border="0" cellpadding="5" cellspacing="0" width="424" style="font-family: Verdana; font-size: 12px; border-style: dotted; border-width: 1">
<tr>
<td align="center" >
Angezeigte Nachrichten von Mara <a href="internmara.php"> zurück zum Internbereich</a>
</td>
</td>
</tr>
</table>
</body>
</html> |