How can I get the file() function to ignore the first three lines of a file it is reading in?
I have a site with:
<?PHP
require("membercheck.php");
?>
... rest of file
at the top of all the pages to control user logins. The problem is the
file() function only reads in the contents of that file, not the rest of
the contents after the require statement.
Is there a way to tell file() to ignore the first three lines?

