Hi,
I have the folowing code accessing a simple flat text file:
$line = fgets( $fp, 2000);
$details = explode("", $line);
if (($status == $details[1]) && ($$section == $details[2])){
I get the following error:
Undefined offset: 1 in c:\sites.web\mti\companies.php on line 94
which I don't understand, can anybody help?
Thanks