How to query the content of Mysql database in php language: First, the php page needs a php language execution environment when browsing; then create a php class file [mysql.php] for specific operations; then create a page file [ index.php] to receive data; finally access the path.
【Related learning recommendations: mysql tutorial】
How to query the content of Mysql database in php language:
1. When browsing the php page, you need a php language execution environment. I use WampServer software. Just copy the project to wampserver_php\wamp\www\
The php language can be executed under this path.
2. Create a php class file (mysql.php) for specific operations
<?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='color:green;font-size:12px;'>".$mes."</div>"; }else{ $this->message .="<div style='color:green;font-size:12px;'>".$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('/^select/i',$sql); if($result){ //执行sql语句 $rs = $this->conn->query($sql); if($rs === false){ $this->Message("执行'".$sql."'失败,失败原因:".$this->conn->error,false); return false; }else{ $this->Message("执行'".$sql."'成功"); $RS = $rs->fetch_all(MYSQL_ASSOC); $rs->free(); return $RS; } }else{ $this->Message("执行'".$sql."'失败",false); return false; } } } /*链接数据库地址、用户名,密码,数据库名,编码方式*/ $db = new dbMysqli('localhost','root','cly8','user','utf-8');
3. Create a page file (index.php) to receive data
<?php header("content-type:text/html;charset=utf-8"); error_reporting(E_ALL); //引入一个数据库操作类 include_once 'mysql.php'; //查询数据 $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['Sid'];?></td> <td><?php echo $val['Sname'];?></td> <td><?php echo $val['Password'];?></td> </tr> <?php }?> </table> </body> </html>
4. The last access path is http://localhost/folder name/index.php
If you want to learn more about it, please stay tuned. php training column!
The above is the detailed content of How to query the content of Mysql database in php language. For more information, please follow other related articles on the PHP Chinese website!

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
