On Mon, Oct 29, 2001 at 07:07:54AM +0100, Pete Sergeant wrote:
> $file = "/absolute/path/to/files/$FORM{'id'}/options.txt";
> eval "require $file";

The contents of $file are going to show up as an expression with barewords,
division, and concatenation; it won't compile.

Did you mean:

    $file = "...";
    eval { require $file };

perhaps?


Michael
--
Administrator                      www.shoebox.net
Programmer, System Administrator   www.gallanttech.com
--

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to