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

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
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.