Hi All,

I'm reading a paramter file and a text file.
Per line of the text file I want to check if there is a word in there from
the parameter file.
However I need to open and read the parameter file for each line in the text
file. How can I change this?

Followin is the code I have.


<?

if (!($FileContent = file("d:\MyPhp\\test.ora")))
{
 Print ("File could not be opened");
 exit;
}
while (list ($LineNum, $Line) = each ($FileContent))
{
 // Open an ini file
 if (!($IniContent = file("d:\MyPhp\initORA.ini")))
 {
  Print ("File could not be opened");
  exit;
 }
 while (list($KeyNum, $IniParm) = each($IniContent))
 {
  if (strstr($Line,rtrim($IniParm)))
     {
      print ("$Line<BR>\n");
     }
 }
}
?>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to