in reply to Re: HTML tags in perl CGI scripts
in thread HTML tags in perl CGI scripts

The quotes only matter if you use whitespace or possibly [^a-zA-Z0-9] type chars, such as '=', quotes and so forth. Most of the html parsers i've seen treat whitespace as the attribute delimiter for html tags. Example: <tag attr=thisworks attr2=this does not work>, although some browsers my parse that in different ways.