• File: exportar.php
  • Full Path: /home/u820075591/domains/livrariafabris.com.br/public_html/admin/exportar.php
  • Date Modified: 07/17/2023 3:20 AM
  • File size: 371 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?
include 'include/bd.php';

$comando = "SELECT * FROM news WHERE status = 1 ORDER BY nome";
$exec = mysql_query($comando);
while ($linha = mysql_fetch_assoc($exec)) {	

$string .= $linha[email].";";
}
header('Content-type: text/plain');
header( 'Content-Length: ' . strlen( $string ) ); 
header('Content-Disposition: attachment; filename="save.txt"');

echo $string;
?>