Answers for "php export database to text file"

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 "php export database to text file"

Browse Popular Code Answers by Language