Holladiewaldfee,
Danke für Deine Antwort, aber ich meinte eine Textdatenbank
xxx.txt
a|b|c
a|b|c
Ach so ;-)
Dann:
$a = file("xxx.txt");
$b = Array();
for($i=0, $j=count($a); $i<$j; $i++)
{ $b[$i] = Array();
$b[$i] = explode("|", trim($a[$i])); }
var_dump($b);
Ciao,
Harry
--
(There are only 10 types of people in this world: Those who understand binary and those who don't)
(There are only 10 types of people in this world: Those who understand binary and those who don't)