örnek; yaz.php
Kayıt gönderildi dosyası oluşturun.
örnek; yazildi.php
$a = $_GET['a'];
$b = $_GET['b'];
$file_handle = fopen("dosya.txt", "w");
$file_contents = "a:" . $a . "b:" . $b;
fwrite($file_handle, $file_contents);
fclose($file_handle);
print "Bilgiler dosyaya yazdirildi.";
?>