I am trying to create the meta tag:
<META HTTP-EQUIV="Pragma" CONTENT="no cache">
I tried the following line:
print $cgi->start_html(-title => 'Meta Test', -meta=> { 'HTTP-EQUIV'=>'Pragma', 'CONTENT'=>'no cache'}), "\n";
But I get this:
<meta name="HTTP-EQUIV" content="Pragma" />
<meta name="CONTENT" content="no cache" />
Can someone tell me how to create the right tag using CGI?