Ich möchte mit php ein file sichern, dass ich mit einen online editor bearbeitet habe, save.php also irgendwie...
Kann mir jemand helfen?
<?
$myFile= fopen($filename,'w+'); fputs($myFile,$Body?)>
das klappte, aber da fehlte der Kopf und der Híntergrund und ich will ja mehr sichern.
Warum funzt sowas eigentlich nicht:
<?
$myFile= fopen($filename,'w+'); // Open the file for writing
fputs($myFile"<HTML>
<HEAD>
<TITLE>"$filename"</TITLE>
</HEAD>
<BODY>
"$BgColor$BgImg>"
"$Body
"</BODY>
</HTML>" ); // Write the data ($string) to the text file
?>
Danke
phpkaot
Kann mir jemand helfen?
<?
$myFile= fopen($filename,'w+'); fputs($myFile,$Body?)>
das klappte, aber da fehlte der Kopf und der Híntergrund und ich will ja mehr sichern.
Warum funzt sowas eigentlich nicht:
<?
$myFile= fopen($filename,'w+'); // Open the file for writing
fputs($myFile"<HTML>
<HEAD>
<TITLE>"$filename"</TITLE>
</HEAD>
<BODY>
"$BgColor$BgImg>"
"$Body
"</BODY>
</HTML>" ); // Write the data ($string) to the text file
?>
Danke
phpkaot
Kommentar