|
|
|
17년 전
|
조회 789
|
|
|
|
17년 전
|
조회 807
|
|
|
|
17년 전
|
조회 736
|
|
|
|
17년 전
|
조회 894
|
|
|
|
17년 전
|
조회 765
|
|
|
|
17년 전
|
조회 763
|
|
|
|
17년 전
|
조회 739
|
|
|
|
17년 전
|
조회 734
|
|
|
|
17년 전
|
조회 933
|
|
|
|
17년 전
|
조회 1,124
|
|
|
|
17년 전
|
조회 816
|
|
|
|
17년 전
|
조회 796
|
|
|
|
17년 전
|
조회 1,826
|
|
|
|
17년 전
|
조회 1,518
|
|
|
|
17년 전
|
조회 1,037
|
|
|
|
17년 전
|
조회 831
|
|
|
|
17년 전
|
조회 755
|
|
|
|
17년 전
|
조회 727
|
|
|
|
17년 전
|
조회 1,657
|
|
|
|
17년 전
|
조회 1,244
|
댓글 5개
mysql_query("SET NAMES euckr");
...
db접속코드 다음에 넣어보세요~
.....
if (file_exists("$g4[path]/$dbconfig_file"))
{
if (is_dir("$g4[path]/install")) die("<meta http-equiv='content-type' content='text/html; charset=$g4[charset]'><script language='JavaScript'> alert('install 디렉토리를 삭제하여야 정상 실행됩니다.'); </script>");
include_once("$g4[path]/$dbconfig_file");
$connect_db = sql_connect($mysql_host, $mysql_user, $mysql_password);
$select_db = sql_select_db($mysql_db, $connect_db);
if (!$select_db)
die("<meta http-equiv='content-type' content='text/html; charset=$g4[charset]'><script language='JavaScript'> alert('DB 접속 오류'); </script>");
}
.....
.....
if (file_exists("$g4[path]/$dbconfig_file"))
{
if (is_dir("$g4[path]/install")) die("<meta http-equiv='content-type' content='text/html; charset=$g4[charset]'><script language='JavaScript'> alert('install 디렉토리를 삭제하여야 정상 실행됩니다.'); </script>");
include_once("$g4[path]/$dbconfig_file");
$connect_db = sql_connect($mysql_host, $mysql_user, $mysql_password);
$select_db = sql_select_db($mysql_db, $connect_db);
이부분에 추가하면 되나요.
mysql_query("SET NAMES utf8");
if (!$select_db)
die("<meta http-equiv='content-type' content='text/html; charset=$g4[charset]'><script language='JavaScript'> alert('DB 접속 오류'); </script>");
}
.....