ich bin grade daran ein Config Sheet zu bauen. Also mySQL Struktur sieht so aus:
Wie kann ich jetzt die werte von value auslesen die jetzt im moment leer sind ?
PHP-Code:
-- Tabellenstruktur für Tabelle `mega_config`
--
CREATE TABLE `mega_config` (
`key` varchar(255) collate latin1_general_ci NOT NULL,
`value` text collate latin1_general_ci NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
--
-- Daten für Tabelle `mega_config`
--
INSERT INTO `mega_config` VALUES ('title', 'asasd');
INSERT INTO `mega_config` VALUES ('mail', 'asasdad');
INSERT INTO `mega_config` VALUES ('meta_author', '');
INSERT INTO `mega_config` VALUES ('meta_publisher', '');
INSERT INTO `mega_config` VALUES ('meta_language', '');
INSERT INTO `mega_config` VALUES ('meta_robots', '');
INSERT INTO `mega_config` VALUES ('meta_keywords', '');
INSERT INTO `mega_config` VALUES ('meta_description', '');
Kommentar