`"); // tell browser table to be produced
while ($itemArray=fgetcsv($fp)) {
$id = $itemArray[0];
$name = $itemArray[1];
$cost = $itemArray[2];
$qty = $itemArray[3];
// print detail line as table row and data cells
print ("
$id
$name
$cost
$qty
");
}
print(""); // send table end tag
fclose($fp);
?>