Jump to content

Files


kaveman50

Recommended Posts

??

 

This is what I have so far.  I'm not sure where to go from here though.

 

<?

$grades=array();
$file=fopen("grades.txt","r") or exit("Unable to open file!");
$file=fopen("HIGHER.txt","r") or exit("Unable to open file!");
$file=fopen("LOWER.txt","r") or exit("Unable to open file!");

while(!feof($file))
  {

  $f = fgets($file);
  
  array_push($grades, $f);
  
  }
$arr[$i] = explode('", ', $grades[$i]); 








fclose($file);







?>

Link to comment
https://forums.phpfreaks.com/topic/183324-files/#findComment-967884
Share on other sites

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.