Jump to content

Read file and modify line by line before echo ??


Peuplarchie

Recommended Posts

Good day to you all,

 

        I'm working on a script wich permit me to read a file line by line and echo it.

 

Here is my code now:

 


<?php

$console = $_GET["console"];
$name = $_GET["name"];


$file = fopen("info_gen.txt", "r") or exit("Unable to open file!");
//Output a line of the file until the end is reached
while(!feof($file))
  {
  echo fgets($file). "<br />";
  }
fclose($file);
?> 

 

 

My problem is I need to be able to add or edit each and every line seperatly and differently before echo everyting.

 

How can I do so ?

 

Thanks!

 

  • 4 weeks later...

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.