Introducing PHP7.3.5 encapsulation class to access mysql database

coldplay.xixi
Release: 2023-02-17 19:02:01
forward
1953 people have browsed it

Introducing PHP7.3.5 encapsulation class to access mysql database

Recommended (free):PHP7

PHP7.3.5 encapsulation class Access mysql database

Model.class.php

table=$t; } private function conn(){ $servername = "localhost"; $username = "root"; $password = "133"; $dbname = "myweb"; // 创建连接 if($conn=mysqli_connect($servername, $username, $password, $dbname)){ return $this->connect=$conn; } } //select查询 public function select(){ $this->conn(); $sql="SELECT * FROM {$this->table}"; $rst=mysqli_query($this->connect,$sql); while($row=mysqli_fetch_assoc($rst)){ $rows[]=$row; } return $rows; } } ?>
Copy after login

function.inc.php

Copy after login

index.php

select(); echo '
'; print_r($rows); echo '
'; ?>
Copy after login

Related free learning recommendations:mysql video tutorial

The above is the detailed content of Introducing PHP7.3.5 encapsulation class to access mysql database. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!