Hallo!
Also ich hab ein kleiner (?) Problem.
Ich brauche ein Script das mir einen Vordefinierten Inhalt in eine neue Datei schreibt, also die Datei erst erstellen muss. Der Name der neuen Datei sollte variabel sein (z.B. über ein Texteingabefeld bestimmbar), aber auf die Endung .php hören. Dann muss das Script auch an ner 2 Stelle noch Variabel sein : Der Inhalt der neuen Datei verweist, mittels include() auf eine andere Datei die bei mir im Ordner "txt" liegt und auch ne .txt Datei ist.
Den Inhalt der in die neue Datei,die geschrieben werden soll, sieht wiefolgt aus :
Ich hoffe mir kann jemand helfen.
Danke schonmal im Vorraus
Also ich hab ein kleiner (?) Problem.
Ich brauche ein Script das mir einen Vordefinierten Inhalt in eine neue Datei schreibt, also die Datei erst erstellen muss. Der Name der neuen Datei sollte variabel sein (z.B. über ein Texteingabefeld bestimmbar), aber auf die Endung .php hören. Dann muss das Script auch an ner 2 Stelle noch Variabel sein : Der Inhalt der neuen Datei verweist, mittels include() auf eine andere Datei die bei mir im Ordner "txt" liegt und auch ne .txt Datei ist.
Den Inhalt der in die neue Datei,die geschrieben werden soll, sieht wiefolgt aus :
Code:
<html> <head> <title> </title> <link rel="stylesheet" type="text/css" href="styling.css"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" background="design_images/backback.gif"> <table width="800" border="0" height="600" cellspacing="0" cellpadding="0" align="center"> <tr> <td valign="top" height="66"><img src="design_images/very_top.gif" usemap="#Map" border="0" width="800" height="50"><br> <img border="0" src="images/Rookie_Webdesignz.gif" width="820" height="143"></td> </tr> <tr> <td height="40"><img src="design_images/under_banner.gif" width="800" height="41"></td> </tr> <tr> <td valign="top" bgcolor="#000000"> <table width="99%" border="0" cellspacing="0" cellpadding="0" height="404"> <tr> <td width="20%"> <div align="center" style="width: 165; height: 100%"> <p><?php include("navigation.php"); ?> </p> </div> </td> <td width="80%" valign="top" bgcolor="#000000"> <table width="99%" border="0" cellpadding="0" cellspacing="0" height="353"> <tr> <td valign="top" width="67%"> <p></p> <p> <center><textarea cols="100%" rows="50%"><?php include("txt/textdatei.txt"); [COLOR=red]// <----Der Name der Textdatei muss variabel sein[/COLOR] ?> </textarea></center> </td> </tr> </table> <div align="left"><font face="Verdana, Arial, Helvetica, sans-serif" size="1"> <noscript></noscript></font></div> </td> </tr> </table> <div align="center"> <p> </p> <p> </p> </div> </td> </tr> </table> <map name="Map"> <area shape="rect" coords="10, 3, 72, 36" target="_blank" nohref> </map> </body> </html>
Danke schonmal im Vorraus
EDIT:
code.tags by wotan
Kommentar