DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
PHP READ TAB SEPARATED FILE
// OPENS A TAB SEPARATED FILE
// PUTS DATA INTO AN ARRAY AND SPLITS IT BY TAB
// LOOPS THROUGH CODE AND PRINT
<?php
$filename = "Book1.txt";
$fd = fopen($filename,"r");
$contents = fread ($fd,filesize ($filename));
fclose($fd);
$splitcontents = explode(" ", $contents);
$counter = 0;
foreach($splitcontents as $data){
echo $counter++;
echo ": " . $data;
}
?>





