13
nasıl bir textfile açın ve ekleme modunda dosyayı açmak için gereken bir dosyaya veri eklemek için php appendstyle ile kendisineMetin dosyası nasıl açılır ve php ile nasıl eklenir?
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);
+ Detaylara girmek için 1. 'fprintf()' de iyi bir seçim olacaktır. –