Merhaba Arkadaşlar

Sorunum : Parse error: syntax error, unexpected 'Content' (T_STRING) in /home/gizmotur/public_html/Connections/sitedb.php on line 12'dir.

Bir türlü çözemiyorum. Yardımcı olursanız çok sevineceğim.

<?php
# FileName="Connection_php_mysql.htm"
# Type="MYSQL"
# HTTP="true"
error_reporting(E_ERROR | E_PARSE);
//error_reporting(E_ALL);
$hostname_sitedb = "localhost";
$database_sitedb = "....";
$username_sitedb = ".....";
$password_sitedb = ".....";
$sitedb = mysql_connect($hostname_sitedb, $username_sitedb, $password_sitedb); 
if(mysql_error()) { die("<html><head><meta name=”revisit-after” content=”1 days”><meta http-equiv=”cache-control” content=”no-cache”><meta http-equiv=”pragma” content=”no-cache”></head><body><p align=center>Üzgünüz; Şu Anda Sitede Çok Fazla Bağlantı Var, Lütfen bekleyip tekrar deneyiniz.</p><p align=center>Sorry; There are too many connections on site, Please try again later.</p></body></html>"); }
mysql_query('SET character_set_client = "latin5"',$sitedb);
mysql_query('SET character_set_results = "latin5"',$sitedb);
mysql_query('SET character_set_connection = "utf8"',$sitedb); 
mysql_query('SET time_zone = \'+0:00\'',$sitedb);
$timezoneserver_sitedb = "+00:00";
$timezonelocal_sitedb = "+00:00";
?>