Horje
How to get first Five Line from CSV File

A small change to your code should read a maximum of five lines.


How to extract first Five Line from CSV File

Follow the Example.
index.php
Example: PHP
<?php
$maxLines = 5;
$file_handle = fopen("file.csv", "r"); // Here put CSV File Location
for ($i = 0; $i < $maxLines && !feof($file_handle); $i++)
{ $line_of_text = fgetcsv($file_handle, 1024); print '<div class="ticker_price">'. $line_of_text[0] . "</div>";
}
fclose($file_handle);
?>

Output should be:

How to extract first Five Line from CSV File





Category :
Web Tutorial
Sub Category :
PHP Extract Tutorial
Uploaded by :
Admin