$disfile = fopen("blah.txt", "r");
while($line = fgets($disfile, 255))
{
if(eregi("owner", $line))
{
$line = explode("=", $line);
break;
}
}
echo $line[0];
echo $line[1];
$line[0] will be the owner
$line[1] will be the value
Just adding to what rob said. Hope this helps.