Syntaxe d’utilisation de la méthode ‘fgetcsv()’

Author:


Download

<?php
   $fh = fopen("primes.csv", "r");
   while (list($nom_usage, $email, $telephone) = fgetcsv($fh, 1024, ","))
   {
      echo "<p>$nom_usage ($email) Tel. $telephone</p>";
   }
?>

Leave a Reply

Your email address will not be published. Required fields are marked *


+ nine = 17