$fp=fopen("catalogs/optspec_webtable.txt","r");
$i = 0;
while (!feof($fp))
{
$data=fgets($fp,600);
$d_array=explode(",", $data);
$name = str_replace(" ","",$d_array[0]);
if ($i==0)
{
$label=$d_array;
}
if ($gal==$name)
{
$j = 1;
while ($j < count($label))
{
print "| ".$label[$j]." | ".$d_array[$j]." |
";
$j = $j + 1;
}
}
$i=$i+1;
}
?>