I am trying to work on a script on my local pc (Windows), but I cannot figure out how to use the "require" command on my computer (that works on my linux hosting account).
Example for my hosting account:
Example for my computer (which doesn't work):
Maybe I'm missing a module? I'm not sure. Any help would be appreciated.
Thanks.
Example for my hosting account:
Code:
#!/usr/bin/perl
require "somesub.pm";
print "content-type: text/html\n\n";
Example for my computer (which doesn't work):
Code:
#!"D:\web\xampp\perl\bin\perl.exe"
require "somesub.pm";
print "content-type: text/html\n\n";
Maybe I'm missing a module? I'm not sure. Any help would be appreciated.
Thanks.