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: | echo("<p class=head>" . $text["166"] . "</p>");
if($_POST["save"] == "true") {
# Speichern #
if(!$_POST["style_neu"]) {
echo("<p class=headline>" . $text . "</p>");
} else {
unlink("style.css");
$fp=fopen("style.css","a");
fwrite($fp, $_POST["style_neu"]);
fclose($fp);
echo("<p class=headline>" .$text["169"] . "</p>");
}
} else {
if(!file_exists("style.css")) {
echo("<p class=headline>" . $text["167"] . "</p>");
} else {
?>
<form action="?show=style" method="POST">
<textarea rows="30" name="style_neu" cols="60" wrap="physical">
<? include("style.css"); ?></textarea>
<p>
<input type="hidden" name="save" value="true">
<input type="submit" value="<? echo($text["005"]); ?>">
<input type="reset" value="<? echo($text["038"]); ?>" >
</form> |