Untitled

 avatar
unknown
plain_text
2 years ago
196 B
14
Indexable
<?php

$dosya = "turk101m.csv"

$isimler = array("erkan");
touch("$dosya");
fopen("$dosya","wbt");


foreach ($isimler as $isim){

    fwrite($dosya, "$isim;");

}
fclose($dosya)
?>
Editor is loading...