Jump to content

[SOLVED] Read line of file


evank3

Recommended Posts

the link you gave was a faulty one, if you just want to read one line of a text file:

$contents = file("text.txt");
echo $contents[0];//this would give you line one
echo $contents[4];//this would give you line five
echo $contents[99];//this would give you line one hundred
echo "and so on";//ignore this

Is this what you are looking for?

Ted

Link to comment
Share on other sites

Its almost working perfectly!  the only problem is that its reading the characters in the file not lines.  like the code you gave me gave me the first, fifth, and ninty-ninth character in the file instead of giving me certain lines.

 

Here is my code:

<php
file_get_contents("URL OF WEBPAGE");
echo $contents[0];//this would give you line one
echo "<br>";
echo $contents[4];//this would give you line five
echo "<br>";
echo $contents[99];//this would give you line one hundred
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.