Exportation d'une table MYSQL dans un fichier CSV


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. //**** Extraction de la table et création du fichier CSV
  2. $FileOut = "/data/web_dev/Voila_shopping/liens_voila.csv";
  3. $sql="SELECT * FROM liens ORDER BY mot";
  4. $TABLiens=$myDB_select->queryAllRecord($sql);
  5.  
  6. $fpout = fopen($FileOut, "w");
  7. if(count($TABLiens)) foreach($TABLiens as $lien) {
  8. fwrite($fpout,$lien[mot].";".$lien[titre].";".$lien[descriptif].";".$lien[lien]."
  9. ");
  10. }
  11. fclose($fpout);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.