Untitled

Anonymous
php
05/19/2023 2:44 AM
304 B
22
Indexable
<?php
$first = "andi";
$nama = "andi wijaya\n";
$nama .= "cokro subakir\n";
$nama .= "handi yunianto";

$file_name = "daftar_nama.txt";
file_put_contents($file_name, $nama);

$read = file_get_contents($file_name);
echo $read;
Editor is loading...