php mssql 연동 소스
리눅스/PHP2015. 1. 16. 10:37
반응형
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<?
$mssql_host = 'HOST';
$mssql_user = 'ID';
$mssql_password = 'PASSWORD';
$mssql_db = 'DBNAME';
$conn = mssql_connect($mssql_host,$mssql_user,$mssql_password);
mssql_select_db($mssql_db, $conn);
$result1 = mssql_query("insert into testhan values('한글')");
$result = mssql_query("SELECT t1 FROM testhan");
while ($row = mssql_fetch_row($result)) {
echo $row[0]."<br>";
}
mssql_close($conn);
?>
[출처] BoyoYa Blog (http://blog.boyo.kr/entry/mssql-%EC%97%B0%EB%8F%99-%EC%86%8C%EC%8A%A4)
반응형
'리눅스 > PHP' 카테고리의 다른 글
PHP에서 SNMP 사용 (0) | 2015.01.16 |
---|---|
pdo_mysql 확장 모듈 설치 (0) | 2015.01.16 |
mbstring 설치하기 (0) | 2015.01.16 |
configure: error: Kerberos libraries not found. (0) | 2015.01.16 |
URL file-access is desabled in the server configureation (0) | 2015.01.16 |
댓글()