디비 접속 .. connect.html
페이지 정보
본문
mysql_connect('호스트명', '관리자', '암호') or die( "Unable to connect to SQL server");
mysql_select_db("DB명") or die( "Unable to select database");
######################################################################################
function db_connect($db){
$dbconnect=mysql_connect("localhost",$user,$pass) or die ("DB에 연결할수 없습니다");
if(!mysql_select_db("$db",$dbconnect)) {
mysql_close($dbconnect);
echo("<script> window.alert('데이터베이스와 접속 할 수 없습니다.')
history.back()
</script> ");
exit;
}
return $dbconnect;
}
mysql_select_db("DB명") or die( "Unable to select database");
######################################################################################
function db_connect($db){
$dbconnect=mysql_connect("localhost",$user,$pass) or die ("DB에 연결할수 없습니다");
if(!mysql_select_db("$db",$dbconnect)) {
mysql_close($dbconnect);
echo("<script> window.alert('데이터베이스와 접속 할 수 없습니다.')
history.back()
</script> ");
exit;
}
return $dbconnect;
}
- 이전글체크 아이디 21.02.09
- 다음글로그인 과정 아이디와 패스워드 검사 21.02.09
댓글목록
등록된 댓글이 없습니다.