phpbar.de logo

Mailinglisten-Archive

[PM] Re: [php] fgetcsv() und Umlaute

[PM] Re: [php] fgetcsv() und Umlaute

Martin Beigert info at webdevice.de
Sam Nov 5 13:42:43 CET 2005


Hallo,

Aber das gleiche passiert, wenn ich auch eine "normale" Datei erstelle. 
Deswegen hier mal der Code:

HTML Datei:
<form enctype="multipart/form-data" action="foo.php" method="post">
<p>
  <input type="file" name="Inp_File" />
  <input type="submit" name="Inp_Destinations" value="Einspielen" />
</p>
</form>


Die Datei foo.php:
<?php

 require_once('framework.foo.php');
 if(isset($_POST['Inp_Destinations'])) {
   $setup->destinations_parse($_FILES['Inp_File']['tmp_name']);
 }

?>

Die Datei framework.foo.php:
<?php
 class foo {
 ...
 public function numberingplan_parse($filename) {
     $fp = fopen($filename, 'r');
   while ($data = fgetcsv($fp, 1000, ';')) {
     echo $data[0];
   }
   fclose($fp);
 }
 ...
}
?>

php::bar PHP Wiki   -   Listenarchive