in reply to How do I read code from another file into my script?

I'm not sure if you're wanting to put the @referers variable into a separate file, or if you're wanting to put the check_url subroutine there, but just think of a required file as if it were cut and pasted in the exact spot where you put the "require" statement.

So, just cut whatever you want out of your main script, put it in a separate file, and put the require "otherfile.pl" in its place.

However, you should realize that the HTTP_REFERER variable is useless as a security measure, since it is set by the browser, and anyone can bypass your check with some basic perl.

  • Comment on Re: How do I read code from another file into my script?

Replies are listed 'Best First'.
RE: Answer: How do I implement
by Anonymous Monk on May 11, 2000 at 07:37 UTC
    Thank you very much for the answer. As for security, the referers rquire file is to allow only someone from the listed domains. If you can think of any other security solution, I'm all ears ! Peter