Inital commit

This commit is contained in:
Tilman
2011-10-26 10:11:42 +02:00
commit c0da376199
888 changed files with 44367 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
$fp = fopen(stripslashes($_POST["filename"]),"w+"); // Datei öffnen
fputs($fp,stripslashes($_POST["eingabe"])); # daten in datei speichern
fclose($fp);
echo '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
echo "<html>";
echo "<head>";
echo '<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">';
echo '<link rel="stylesheet" type="text/css" media="all" href="stylesheet.css">';
echo '<title>Datei speichern</title>';
echo "</head>";
echo "<body>";
echo '<span id="menu"><a href="index.php">zurück zur Liste</a></span>';
echo "<p>Datei gespeichert.</p>";
echo "</body>";
echo "</html>";
?>