Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7598979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T22:32:45+00:00 2026-05-30T22:32:45+00:00

$file_handle = fopen(ticker.csv, r); while (!feof($file_handle) ) { $line_of_text = fgetcsv($file_handle, 1024); print ‘<div

  • 0
$file_handle = fopen("ticker.csv", "r");  while (!feof($file_handle) ) {

  $line_of_text = fgetcsv($file_handle, 1024);

  print '<div class="ticker_price">'. $line_of_text[7] . "</div>";
                                                                                                       }
fclose($file_handle);

How can I read a limited number of lines from the column 7 inside the .csv file

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T22:32:46+00:00Added an answer on May 30, 2026 at 10:32 pm

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

    $maxLines = 5;
    $file_handle = fopen("ticker.csv", "r");
    
    for ($i = 0; $i < $maxLines && !feof($file_handle); $i++)
    {
        $line_of_text = fgetcsv($file_handle, 1024);
        print '<div class="ticker_price">'. $line_of_text[7] . "</div>";
    }
    fclose($file_handle);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am parsing a CSV file using fgetcsv, specifically using $line_of_text. I want to
I want to write a file_handle class like this #include <stdio.h> #include <iostream> #include
I'm creating a class that will store data in a file and I need
I have a csv file that has 3.5 million codes in it. I should
My goal here is to have the browser download a csv file using headers
I am facing a problem with FPDF while generating the PDF file with images
I have a csv file that has like 30,000 rows in it. It also
I need to find out if a certain string is found in a CSV
I have a simple scripts to upload csv file and it works . But
I'm now using this code to import csv data into my database.(Thanks to Francis

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.