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:
37:
38:
39:
40:
41:
42:
43:
|
<html>
<head><style type="text/css">
BODY {
color: #000000;
text-align : center; }
A:link{COLOR: #000000; TEXT-DECORATION: none; } A:visited{COLOR: #000000; TEXT-DECORATION: none; } A:active{COLOR: #000000; TEXT-DECORATION: none; } A:hover{COLOR: #987F62; TEXT-DECORATION: none; }
</style>
</head>
<body>
<? $pferd=$HTTP_POST_VARS['pname'];
$uname=$HTTP_POST_VARS['uname'];
$ein=$HTTP_POST_VARS['ein'];
// 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("e_$pferd.htm","a+");
$inhalt="<br><table border="0" cellpadding="0" cellspacing="0" width="500" style=" border-style: no; border-width: 0; font-family:Verdana; font-size:12px">
<tr>
<td width="500" align="center"> $datum, <b>Box gemistet von $uname</b>, Einstreu: $ein</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" >
Ausgezeichnet, du hast die Box von <? echo $pname; ?> gemistet. Diese Aktion wurde in die Ereignisse eingetragen <a href="intern.php"> zurück zum Internbereich</a>
</td>
</td>
</tr>
</table>
</body>
</table>
</body>
</html> |