이 기사에서는 주로 Php에서 데이터를 읽는 기본 작업 예제를 공유합니다. 먼저 단계를 분석하겠습니다. 그런 다음 모두에게 도움이 되기를 바라면서 코드를 모든 사람과 공유하세요.
PHP 데이터베이스 작업의 기본 단계:
1단계: mysql 데이터베이스 서버에 연결 $link = mysql_connect(호스트, 사용자 이름, 비밀번호);
2단계: 운영할 데이터베이스 선택 mysql_select_db(데이터베이스 이름)
3단계: 문자 집합 설정
4단계: SQL 문 실행
5단계: 데이터 가져오기
다음은 작업 단계의 예입니다.
<?php //数据库的配置信息 $db_host = "localhost"; $db_user = "root"; $db_pwd = "root"; $db_name = "数据库名字"; //前缀 $db_prefix = "007_"; //链接数据库 $link = @mysql_connect($db_host,$db_user,$db_pwd); if(!$link){ echo "连接mySq数据库失败"; } //选择当前的数据库 if(!mysql_select_db($db_name,$link)){ echo "打开数据库失败"; } //设置字符集 mysql_query("set names utf8"); //查询语句 $sql = "select id,title,author,source,hits,addate from {$db_prefix}news order by id desc"; //拿到资源集合 $result = mysql_query($sql); ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Document</title> <style type="text/css"> td,th{ padding: 5px;color:#444;font-size: 14px;border: 1px solid #ccc; } </style> </head> <body> <table width="1000" border = "1" style="border-collapse: collapse;"> <tr> <th>编号</th> <th>标题</th> <th>作者</th> <th>来源</th> <th>点击量</th> <th>发布时间</th> </tr> <?php while($row = mysql_fetch_row($result)){ //循环取数据 ?> <tr> <th><?php echo $row[0]?></th> <th><?php echo $row[1]?></th> <th><?php echo $row[2]?></th> <th><?php echo $row[3]?></th> <th><?php echo $row[4]?></th> <th><?php echo $row[5]?></th> </tr> <?php }?> </table> </body> </html>
관련 권장 사항:
PHP로 데이터베이스 정보를 읽는 방법 Method_PHP 튜토리얼
위 내용은 Php에서 데이터를 읽는 기본 작업의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!