Back in data txt

1

I have a table of my blog called news, in this news table I have the fields, id, title, text, author, date

I would like to create a button where by clicking it it creates a .txt file with all the information coming from my ex database:

id: 1
titulo: titulo da noticia 1
texto: texto da noticia 1
autor: autor do post 1
data: data do post 1

id: 2
titulo: titulo da noticia 2
texto: texto da noticia 2
autor: autor do post 2
data: data do post 2


id: 3
titulo: titulo da noticia 3
texto: texto da noticia 3
autor: autor do post 3
data: data do post 3

and so on .. getting all DB data how can I do this?

    
asked by anonymous 22.01.2018 / 13:40

1 answer

0

Example

Query the database, and print with this function:

function gravar($texto){
    //Variável arquivo armazena o nome e extensão do arquivo.
    $arquivo = "nomedoarquivo.txt";
    //Variável $fp armazena a conexão com o arquivo e o tipo de ação.
    $fp = fopen($arquivo, "a+");
    //Escreve no arquivo aberto.
    fwrite($fp, $texto . ";");
    //Fecha o arquivo.
    fclose($fp);
}

In the example, you are separating by ";", it is there to use line break, etc. Basically how to print a table / list.

References

Write and read txt file

    
22.01.2018 / 13:48