Tux L i n u x * G u i d e

v o n * I n g o * B l e c h s c h m i d t * ( c ) * 2 0 0 1
Tux
|Home|

|Neue Artikel|

|Index|

|Liste|

|Code-Snippets|

|Links|

|Allgemeines|

|Cool Stuff|
CSV2HTML
Die Jul 10 14:21:46 MEST 2001
CSV HTML Datenbank Perl CGI Apache

Sie wollen Ihre Datenbank im CSV-Format (Comma Separated Values) ins HTML-Format konvertieren, wenn möglich mit direkter CGI-Anbindung.

LinuxGuide Druckbare Version
Man-Page
Sourcecode
Verwandte Artikel:

Bilder-Archiv
HTML-Markups in Text umsetzen
Perl-Sicherheitslücken decken
VIM als HTML-Editor
Zeitdiagramm erstellen
Operationen mit Dateien in Perl
Spalten vertauschen
Term::Cap in Perl
Der HTML-Automat
Entropie
Perl-Präprozessor
Farbverlauf mit Perl
Text2HTML
Alte OE5 Adressbücher konvertieren
Sichere Passwörter generieren



      .~.   
      /V\   
     // \\  
    /(   )\ 
     ^`~'^  
     


Hosted at Sorceforge.net
No ePATENTS
Viewable With Any Browser
Burn All GIFs!

F
olgendes Skript, zu speichern in /usr/local/httpd/cgi-bin/, wenn Sie vorhaben, die Ausgabe über Apache ins Internet zu stellen, hilft dabei ( Download):
# csv2html.sh
 
#!/usr/bin/perl -w
# csv2html.pl - Konvertiert CSV-Dateien nach HTML
# Copyright (C) Sam Aug  4 13:59:19 MEST 2001 by Ingo Blechschmidt
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License
#  along with this program; if not, write to the Free Software
#  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
#
# Ingo Blechschmidt
# Arberstraße 5
# 86179 Augsburg
# E-Mail: iblech@web.de, http://www.way.to/uselinux/
# Tel.: +49 / 821 882955
#
# 
$TITLE="CSV2HTML";
print "Content-type: text/html\n\n";

open(EINGABE, "<daten.csv") || die;

print "<html>\n<head>\n<title>$TITLE</title>\n</head>\n<body bgcolor=\"#ffffaa\">\n\n";

print "<h1 align=\"center\">$TITLE</h1>\n<hr />\n\n";

print "<table border=\"2\" cellpadding=\"3\" cellspacing=\"1\">\n";

$header = <EINGABE>;
@zeile = split(";", $header);
print "<tr>";
foreach $zeile (@zeile) {
  print "<th bgcolor=\"#ffaaaa\">$zeile</th>";
}
print "</tr>\n";

@tabelle = sort(<EINGABE>);
foreach $zeile (@tabelle) {
  @zeile2 = split(";", $zeile);
  print "<tr>";
  foreach $zeile2 (@zeile2) {
    print "<td bgcolor=\"#aaaaff\">$zeile2</td>";
  }
  print "</tr>\n";
}

print "</table>\n</form>\n\n</body>\n</html>\n";

close(EINGABE);
 
 

Wenn Sie das Skript aufrufen, nachdem Sie die Variable $TITLE an Ihre Bedürfnisse angepasst haben, liest das Skript die Datei daten.csl ein und schreibt in die Standard-Ausgabe.
Wenn Sie gedenken, dass Skript wirklich online zu stellen, sollten Sie aber die Such-, Hinzufüge- und Löschprozedur nicht vergessen...

Document Informations: Content-Type: text/html; charset=iso-8859-1
Author: Ingo Blechschmidt
Description: LinuxGuide - Sie wollen Ihre Datenbank im CSV-Format (Comma Separated Values) ins HTML-Format konvertieren, wenn möglich mit direkter CGI-Anbindung.
Keywords: CSV, HTML, Datenbank, Perl, CGI, Apache, LinuxGuide
Robots: all
Copyright: Copyright (C) 2002 by Ingo Blechschmidt
Date: 2003-07-10T14:21:46+02:00

Stichwortverzeichnis | Neue Artikel | Übersicht | Codesnippets | Links | Copyright | Cool Stuff | Home | Druckbare Version | Manpage | Sourcecode |
Diesen Artikel kritisieren, kommentieren oder ergänzen
Einen Neuen Artikel schreiben

 
This website is distributed under the GNU Free Documentation License .