Just use file() or fopen(). read in a line, explode by "," and then you have your data. File() is easiest...
Use this:
$filename = "blah.txt";
$file = file($filename);
for($count=0;$count<count($file);$count++)
{
$line = explode(",",$file[$count]);
//$line will be an array containing
//each value that was seperated by a comma
echo $line[0];
echo $line[1];
}
Adapt to your needs, of course.
---John Holmes...