in reply to Re: Problem with IniFile module
in thread Problem with IniFile module

When you use the above code, Perl / your script will tell you that it couldn't find the .ini file. This is because you used single backslashes (\) to delimit the directories. This is wrong. Either use double backslashes, or, even better, use forward slashes, as both, Unix and DOS/Win32 understand these in a filename.

Or -even better- use File::Spec->catfile(..) ...
Regards
Stefan K

$dom = "skamphausen.de"; ## May The Open Source Be With You! $Mail = "mail@$dom; $Url = "http://www.$dom";