From: Robert Date: 2004-02-22T05:39:52+09:00 Subject: Re: Puzzling... Jon A. Lambert wrote: > "Ruby Tuesday" wrote: > > BTW this is incorrect. > print "Content-type: text/html \n\n\n" > > It should be > print "Content-type: text/html \r\n\r\n" > > Is that a Ruby thing? That certainly isn't how Perl does it. Perl does the following: print "Content-type: text/html\n\n"; Which I believe is the standard header.