커피와 개발자

[MySQL API] mysql_connect() 본문

데이터베이스/SQL

[MySQL API] mysql_connect()

광박이 2011. 3. 3. 10:27
728x90

MySQL 서버에 연결,
   mysql_real_connect() 함수의 사용을 권장.

【예제】
<html><body>
< ?
  $result=mysql_connect("localhost","root","root_password")
    or die("DB connection Failed ....");
  echo $result;
? >
</body></html>
728x90

'데이터베이스 > SQL' 카테고리의 다른 글

[MySQL API] mysql_data_seek()  (0) 2011.03.03
[MySQL API] mysql_create_db()  (0) 2011.03.03
[MySQL API] mysql_close()  (0) 2011.03.03
[MySQL API] mysql_client_encoding()  (0) 2011.03.03
[MySQL API] mysql_change_user()  (0) 2011.03.03
Comments