//1, 데이터베이스에 연결
$conn = mysql_connect('localhost','root','root')
if(!$conn){
die("Connection failed".mysql_error);
}
//2, 데이터베이스 선택
mysql_select_db("test")//3, 작업 보내기 명령문
$sql="select * from user";
//4, 결과 수신
$res=mysql_query($sql,$conn)// 5, 순회 결과
while($row=mysql_fetch_row($res)){
echo "
$row[0]--$row[1]--$row[2]" ;
}
//6, 닫기
mysql_free_result($res)
mysql_close($conn)
?>