dwex
Erfahrenes Mitglied
Hallo Leute,
ich habe hier über 1000 CSS-Dateien mit jeweils der gleichen Syntax und verschiedenen Inhalt.
Ich muss jetzt die einzelnen Farben und Einstellungen der CSS-Datei in eine MySQL-DB übertragen.
Habe mir gedacht ich mach das automatisch statt mit der Hand
Hier mal die CSS-Datei:
Habt Ihr eine Idee wie ich die Daten in meine MySQL-Tabelle bringe - mir fehlt momentan leider jeglicher Lösungsansatz.
Vielen Dank für eure Hilfe im Voraus.
ich habe hier über 1000 CSS-Dateien mit jeweils der gleichen Syntax und verschiedenen Inhalt.
Ich muss jetzt die einzelnen Farben und Einstellungen der CSS-Datei in eine MySQL-DB übertragen.
Habe mir gedacht ich mach das automatisch statt mit der Hand
Hier mal die CSS-Datei:
PHP:
body { background-color: #ffffff;
color: #000000; font-family: Verdana; font-size: 8pt;
scrollbar-base-color: #336695;
scrollbar-track-color: #ff9900;
scrollbar-arrow-color: #ff9900;}
.td { color: #000000; font-family: Verdana; font-size: 8pt; text-decoration: none;}
.rahmen { background-color: #ff9900;}
.hgtabelle { background-color: #ffffff; font-family: Verdana; font-size: 8pt;}
.titel { color: #336695; font-family: Verdana; font-size: 8pt; font-weight: bold;}
.hgtitel { background-color: #ff9900;}
.linie { color: #ff9900;}
.Ort { color: #ff9900; font-family: Verdana; font-size: 8pt;}
.input { background-color: #ffffff; font-family: Verdana; font-size: 8pt;}
.input_submit{ font-family: Verdana; font-size: 8pt;}
a.link:link { color: #336695; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a:link { color: #336695; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a.link:active { color: #bf0000; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a:active { color: #bf0000; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a.link:visited { color: #336695; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a:visited { color: #336695; font-family: Verdana; font-size: 8pt; text-decoration: none;}
a:hover { color: #ff9911; font-family: Verdana; font-size: 8pt; text-decoration: underline;}
a.link:hover { color: #ff9911; font-family: Verdana; font-size: 8pt; text-decoration: underline;}
Vielen Dank für eure Hilfe im Voraus.