13
Wie Sie eine Textdatei öffnen und sie mit PHP appendStyleWie öffne ich Textdatei und schreibe daran append-style mit php?
textFile.txt
//caught these variables
$var1 = $_POST['string1'];
$var2 = $_POST['string2'];
$var3 = $_POST['string3'];
$handle = fopen("textFile.txt", "w");
fwrite = ("%s %s %s\n", $var1, $var2, $var3, handle);//not the way to append to textfile
fclose($handle);
+ 1 für ins Detail gehen. 'fprintf()' wäre auch eine gute Wahl. –