I am trying to use a module located in the same folder (cgi-bin) in another file
I have something like this
package ModuleName;
sub …
and in the other file I have
use ModuleName;
is there a special way to import not library files, or files in the cgi-bin along side perl scripts?
Everything worked when they were both in the same file.
Both files have the appropriate head #!…

#!line. That's only needed in files which will be run as programs so that the shell (on *nix systems) will know which interpreter to use to execute the code. – Dave Sherohman Mar 31 '11 at 10:14