in reply to Re^2: cgi code line message
in thread cgi code line message

My dumb mistake. Forgot that __LINE__ doesn't (and shouldn't) interpolate. Here ya go...

error_message( "File cannot be opened: Line " . __LINE__ . "\n" );

Looks like you already figured it out though. Hope you find it helpful!


Dave