in reply to dbi with cgi

The problem (besides the use strict mentioned previously) is your backwards header. Change "text\html" to "text/html". The way you have it setup causes both Safari and IE to download the file; Mozilla will print your end_html() output directly to the browser instead of interpreting it as HTML code. When loading your test script with IE, I was able to replicate the error you posted. Correct your header and you should be fine.

Replies are listed 'Best First'.
Re^2: dbi with cgi
by Anonymous Monk on Jun 25, 2005 at 01:27 UTC

    cbro you are exactly correct. Now its working fine. Thanks for others also who suggested to correct my code.