cgiに広告を追加したいのですが、どうしたら良いでしょうか。よろしくお願いします。
cgi
1# ------------ # 2# HTMLヘッダー # 3# ------------ # 4sub head{ 5print "Content-type: text/html; charset=Shift_JIS\n\n"; 6print <<EOM; 7<html> 8<head> 9<link rel=stylesheet type=text/css href="$stylepath"> 10<title>$main_title</title> 11</head> 12EOM 13if($background){ print"<body background=\"$background\">\n"; } 14else{ print"<body>\n<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 15<script> 16 (adsbygoogle = window.adsbygoogle || []).push({ 17 google_ad_client: "ca-pub-8262824574470102", 18 enable_page_level_ads: true 19 }); 20</script>"; } 21} 22 23 24# -------------- # 25# HTMLフッターー # 26# -------------- # 27sub foot{ 28# 著作権表示です 29print <<EOM 30<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script> 31<script> 32 (adsbygoogle = window.adsbygoogle || []).push({ 33 google_ad_client: "ca-pub-8262824574470102", 34 enable_page_level_ads: true 35 }); 36</script><DIV ALIGN="RIGHT"><SMALL><A HREF="http://www.minicgi.net/" target="_top">Miniりすと $ver</A></SMALL></DIV> 37</body> 38</html> 39EOM 40}
にしたらInternal Server Errorになってしまいました。
重複質問は止めてください。