Hi ,,, this my first time i write to you :) i have the uncluder script $file = $ENV{'QUERY_STRING'}; print "Content-type: text/html\n\n"; if($file eq "") { print "document.writeln(' Includer Error: No File Specified. ');\n"; print "document.writeln('Script by SmartCGIs.com <%5C%22http://www.smartcgis.com%5C%22>
');\n"; exit; } open(DATA,"$file") || print "document.writeln(' Includer Error: Could not open $file ($!). Script by SmartCGIs.com <%5C%22http://www.smartcgis.com%5C%22> ');"; @filecontent = ; close(DATA); foreach $line(@filecontent) { chomp($line); $line =~ s/\'/\\\'/g; print "document.writeln('$line');\n"; } when i add its not work any help or if there any whay to include a text file without useing SSI or IFrame Thanks :) -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]