';
- $anzahl_spalten = $this->db_num_fields($this->data);
-
- for($spalte=0;$spalte<$anzahl_spalten;$spalte++)
- {
- $name = $this->db_field_name($this->data,$spalte);
- $this->html.= '| '.$this->convert_html_chars($row->$name).' | ';
- // Umwandeln von Punkt in Komma bei Float-Werten
- if (is_numeric($row->$name))
- {
- if (strpos($row->$name,'.') != false)
- $row->$name = number_format($row->$name,2,",","");
- }
- $this->csv.= '"'.$row->$name.'",';
- }
-
- $this->json[] = $row;
- $this->html.= '
';
- $this->csv=substr($this->csv,0,-1)."\n";
- $this->countRows++;
- }
- $this->html.= '