$instr = trim($instr); $ins_dir = "$INS_PATH/$instr"; $lineCount = 0; $file = "$ins_dir/$crsid"; echo "
";
if(!($fp = fopen($file, "r")))
die("Unable to open the input file.");
while (!feof($fp))
{
$buffer = fgets($fp, 30000);
if($lineCount < 2){
$lineCount++;
continue;
} else {
echo $buffer;
}
}
fclose($fp);
echo "";
?>