Answers for "how to export from file php"

PHP
0

export txt php

<?php
$namaFile = "addintest.txt";
header("Content-type: text/plain");
header("Content-Disposition: attachment; filename=".$namaFile);

// your content goes here
Posted by: Guest on June-24-2021

Code answers related to "how to export from file php"

Browse Popular Code Answers by Language