exporttable.php 950 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. //grant file on *.* to qb@localhost identified by 'qb';
  3. ini_set('max_execution_time', 0);
  4. require_once 'auth.php';
  5. #$tmpfname = tempnam("/tmp", "outfile.txt");
  6. #if (file_exists($tmpfname)) unlink($tmpfname);
  7. #$adodb->Execute("SELECT * FROM ".$_GET['tableid'].
  8. #" INTO OUTFILE '".$tmpfname."' ".
  9. #" FIELDS TERMINATED BY ',' ".
  10. #" ENCLOSED BY '\"' ".
  11. #" LINES TERMINATED BY '\\n'");
  12. #echo $tmpfname;
  13. #readfile($tmpfname);
  14. #unlink($tmpfname);
  15. if (!$_GET['tableid']) die('Emtpy Table');
  16. $rs = $adodb->Execute("SELECT * FROM ".$_GET['tableid']);
  17. if (!$rs) die($adodb->ErrorMsg());
  18. header("Content-type: text/comma-separated-values");
  19. header("Content-Disposition: attachment; filename=".$_GET['tableid'].".csv");
  20. header("Expires: 0");
  21. header("Cache-Control: must-revalidate, post-check=0,pre-check=0");
  22. header("Pragma: public");
  23. while (!$rs->EOF) {
  24. echo "\"".implode("\",\"", $rs->fields)."\"\n";
  25. $rs->MoveNext();
  26. }
  27. ?>