>  기사  >  백엔드 개발  >  PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법

PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법

coldplay.xixi
coldplay.xixi원래의
2020-08-27 09:53:442284검색

PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법: 먼저 PHP 페이지를 탐색할 때 PHP 언어 실행 환경이 필요합니다. 그런 다음 특정 작업을 위한 PHP 클래스 파일 [mysql.php]를 만든 다음 페이지 파일 [index; .php] 데이터를 받으려면 마지막에 있는 경로에 액세스하면 됩니다.

PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법

관련 학습 권장 사항: mysql 튜토리얼

PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법:

1.php 페이지를 탐색할 때 PHP 언어 실행 환경이 필요합니다. , WampServer 소프트웨어를 사용합니다. 프로젝트를 이 경로에 복사하면 PHP 언어를 실행할 수 있습니다. wampserver_phpwampwww

2. 특정 작업을 위한 PHP 클래스 파일(mysql.php)을 생성합니다.

<?php
/*设置内容类型和编码样式*/
header("content-type:text/html;charset=utf-8");
/*对数据库操作*/
class dbMysqli{
    private $conn = null;
    public $message = "";
    /*设置错误接受机制*/
    function Message($mes,$flag=true){
        if($flag){
            $this->message .="<div style=&#39;color:green;font-size:12px;&#39;>".$mes."</div>";
        }else{
            $this->message .="<div style=&#39;color:green;font-size:12px;&#39;>".$mes."</div>";
        }
    }
    
    /*连接数据库服务器,设置连接数据库编码*/
    function __construct($host,$user,$pwd,$dbName,$charset){
        //连接数据库服务器选择数据库
        $this->conn = new mysqli($host,$user,$pwd,$dbName);
        if($this->conn === false){
            $this->Message("连接数据库失败",false);
            return false;
        }else{
            $this->Message("连接数据库成功,选择数据库");
        }
        //设置连接编码
        if($this->conn->set_charset($charset)){
            $this->Message("设置编码成功");
        }else{
            $this->Message("设置编码失败",false);
        }
    }
    /*查询数据库数据*/
    public function MoreData($sql){
        $sql = trim($sql);
        /*检查sql语言是否正确*/
        $result = preg_match(&#39;/^select/i&#39;,$sql);
        if($result){
            //执行sql语句
            $rs = $this->conn->query($sql);
            if($rs === false){
                $this->Message("执行&#39;".$sql."&#39;失败,失败原因:".$this->conn->error,false);
                return false;
            }else{
                $this->Message("执行&#39;".$sql."&#39;成功");
                $RS = $rs->fetch_all(MYSQL_ASSOC);
                $rs->free();
                return $RS;
            }
        }else{
            $this->Message("执行&#39;".$sql."&#39;失败",false);
            return false;
        }
    }
}
/*链接数据库地址、用户名,密码,数据库名,编码方式*/
$db = new dbMysqli(&#39;localhost&#39;,&#39;root&#39;,&#39;cly8&#39;,&#39;user&#39;,&#39;utf-8&#39;);

3. 데이터를 수신할 페이지 파일(index.php)을 생성합니다.

<?php 
    header("content-type:text/html;charset=utf-8");
    error_reporting(E_ALL);
    //引入一个数据库操作类
    include_once &#39;mysql.php&#39;;
    //查询数据
    $rs = $db->MoreData("select * from student");
?>
<html>
    <head>
        <meta charset="utf-8" />
        <title>css3实现多彩动态漩涡线条特效动画</title>
    </head>
    <style>
    table{
    font-family: verdana,arial,sans-serif;
    font-size:11px;
    color:#333333;
    border-width: 1px;
    border-color: #666666;
    border-collapse: collapse;
    }
    table th {
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #dedede;
    }
    table td {
    border-width: 1px;
    padding: 8px;
    border-style: solid;
    border-color: #666666;
    background-color: #ffffff;
    }
    </style>
<body>
    <table>
        <tr>
            <th>编号</th>
            <th>姓名</th>
            <th>密码</th>
        </tr>
        <?php foreach($rs as $val) {?>
        <tr>
            <td><?php echo $val[&#39;Sid&#39;];?></td>
            <td><?php echo $val[&#39;Sname&#39;];?></td>
            <td><?php echo $val[&#39;Password&#39;];?></td>
        </tr>
        <?php }?>
    </table>
</body>
</html>

4. 마지막으로 http://localhost 경로에 액세스합니다. /파일 폴더명/index.php

PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법

관련 학습을 더 알고 싶다면

php training 칼럼을 주목해주세요!

위 내용은 PHP 언어로 MySQL 데이터베이스의 내용을 쿼리하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.

관련 기사

더보기