Textfile açmak ve php ile ekleme tarzı yazmak nasıl?

1 Cevap php

Nasıl bir metin dosyası açın ve php appendstyle ile bunu yazıyorum

    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);