묻고답하기

$host_name="localhost"; // 자신의 MySQL DB 서버의 위치입니다. 보통 localhost로 하시면 됩니다.
$user_name="dearmai";    // 자신의 계정 아이디를 적으시면 됩니다.
$db_name="dearmai";       // 자신의 MySQL DB 아이디를 적으세요.
$db_password="비번";  // 자신의 DB의 패스워드 압니다.

$connect = mysql_connect("localhost", "skulg","********") or message(mysql_error());  
mysql_select_db("skulg", $connect ) or message(mysql_error());

function message($message)
{
   echo "
        
        ";
exit;
}
?>


이상 제로 카운터 설치구문인데요
제 아이디와 데타베이스네임이 같기때문에
똑같이 skulg로 적었더니


중복된 입력 값 '1': key 1


이런 말이 나오네요...

그리고 설치도 안되고 계속 이 오류만 뜨니...

혹시 어디서 틀렸는지 아시는분 계시나요?