hey doods need a little help splitting a text file the text file looks like this [platform][TAB][company][TAB][program][TAB]version[reg info][TAB] [platform][TAB][company][TAB][pro..."RoyalBlue"]www.genie-soft.com[/COLOR][/CODE]
foreach(explode("\n", file_get_contents('file.txt')) as $line) { list($platform, $company, $program, $version, $reginfo) = explode("\t", $line); /* Do something with them all... I dunno what your DB is like. }