Ich bin leider noch ziemlicher anfänger. kann mir vielleicht jemand sagen warum es alles in $text in der neuen PHP datei als liste anzeigt?
http://prntscr.com/52wapb
hoffe es ist alles da was man zum erkennen braucht
vielen dank schonmal
http://prntscr.com/52wapb
PHP-Code:
<?php
$link = $HTTP_POST_VARS["link"];
$file1 = "filialen/$link.php";
$handle = fopen($file1,"w+");
$text = "
<?php
include 'dbc.php';
page_protect();
?>
<html>
<head>
<title>$name</title>\n
<meta http-equiv=´Content-Type´ content=´text/html; charset=iso-8859-1´>
</head>
<body>
<h1>thihihi</1>
</body>
</html>";
fputs($handle,$text);
fclose($handle);
$handle = fopen ("$file1", "r");
while ( $inhalt = fgets ($handle, 4096 ))
{
echo "<li> $inhalt </li>";
}
fclose($handle);
?>
vielen dank schonmal
Kommentar