$mysql = mysql_connect("DB주소", "SQL 유저ID", "SQL 유저PASS"); // DB 연결


$select = mysql_select_db(연결할 DB); // DB 연결


$array = mysql_qurey($sql); // 해당 테이블 쿼리


$sql = "select * from table"; // 연결 table을 선택


echo $result[name]; // 해당 table name 필드 값 출력


$result = mysql_fetch_array($array); // 패치


mysql_close($mysql); // sql 연결 종료

'PROGRAM > PHP' 카테고리의 다른 글

switch문 기초  (0) 2013.01.11
PHP 로그인 로그아웃  (2) 2013.01.08
연관배열 for 및 foreach 사용  (0) 2012.12.17
if문 on, off  (0) 2012.12.13
array 출력  (0) 2012.12.13