Home Backend Development PHP Tutorial Collection of common codes for PHP5 and MySQL database operations_PHP Tutorial

Collection of common codes for PHP5 and MySQL database operations_PHP Tutorial

Jul 21, 2016 pm 03:39 PM
create mysql php5 and code copy Commonly used Establish operate collect database surface

1 Create database table:

Copy code The code is as follows:

create database club;
create table member(
id int(11) not null auto_increment,
no varchar(5) not null,
name varchar(10) not null,
age int(2) not null,
level varchar(10) not null,
sex tinyint(1) not null,
date datetime not null,
primary key(id)
)engine=MyISAM default charset=GB2312;
insert into member(id,no,name,age,level,sex,date)values ​​
(1,'A001','wanxia',30,'hj',1,'2008-04-02 00 :00:00'),
(2,'C022','liyan',29,'zs',1,'2007-05-31 00:00:00'),
(3,' A006','zhangyan',36,'hj',1,'2007-06-20 00:00:00'),
(4,'B052','luanying',42,'bj',1 ,'2007-02-12 00:00:00'),
(5,'A007','duxiang',26,'hj',2,'2008-03-26 00:00:00') ,
(6,'C060','liuyu',38,'zs',1,'2008-10-16 00:00:00');


2 Read data
2.1 Create 01.php
Code
Copy code The code is as follows:




< ;title>Member List

$link=mysql_connect("localhost","root","123"); //Connect to mysql Server
$db=mysql_select_db("club"); //Select database
mysql_query("set names utf8",$link); //Set encoding method
$sql="Select * from member ";
$result=mysql_query($sql,$link); //Execute select query
$num=mysql_num_rows($result); //Get record query
?>
< body>

Fitness Club Member List




Click on the name to view the member's details, existing membersPeople.


if($num>0)
{
?>






while($row=mysql_fetch_array($result))
{
echo "";
}
?>
Serial number Name Gender
.$row['name'].">". $row['name'].""
.($row['sex']==1?"Female":"Male")."

}
else
{
echo "The club has not yet developed members.";
}
?>



2.2 Create a member. php
Copy code The code is as follows:




Member details

< ;?php
$link=mysql_connect("localhost","root","123"); //Connect to mysql server
$db=mysql_select_db("club"); //Select database
mysql_query ("set names utf8",$link); //Set encoding method
$sql="select no,name,sex,age,level,date_format(date,'%Y-%c-%d') as join_date from member "
."where name='".trim($_GET['name'])."'";
$result=mysql_query($sql,$link); //Executed in select query
?>

Fitness club member details


if($row=mysql_fetch_array($ result))
{
echo "Number: ".$row['no']."
";
echo "Name: ".$row['name']. "
";
echo "Gender:".($row['sex']==1?"Female":"Male")."
";
echo "Age:".$row['age']."
";
echo "Level:".$row['level']."
";
echo "Join:".$row['join_date']."
";
}
?>




3 Modify data
3.1 Create level.php (modify data)
Copy code The code is as follows:




< ;title>Club promotions


Club membership statistics table


$link=mysql_connect("localhost","root","123"); //Connect to mysql server
$db=mysql_select_db("club"); //Select database
mysql_query("set name utf8",$link); //Set encoding method
$sql="Select level,count(*) as num from member group by level";
$result=mysql_query($sql,$link) ; //Execute select query
while($row=mysql_fetch_array($result))
{
switch($row['level']){
case 'bj':
echo "Level: Platinum members Number of people: ".$row['num']."
";
break;
case 'hj':
echo "Level: Gold members Number of people: ".$row['num']."
";
break;
default:
echo "Level: Diamond Member Number of people:".$row['num']. "
";
}
}
?>

Member discount upgrade: from

Upgrade to






3.2 Create up_level.php
Copy code The code is as follows:




Club Promotion


$link=mysql_connect("localhost","root","123"); //Connect to mysql server
$db=mysql_select_db("club"); //Select database
mysql_query("set name utf8",$link); //Set encoding method
$sql="update member set level='".trim($_POST['new_level'])
."' where level='". trim($_POST['old_level'])."'";
$result=mysql_query($sql,$link); //Execute select query
echo mysql_affected_rows($link)."人cong";
switch(trim($_POST['old_level'])){
case 'bj':
echo "Platinum Member" ;
break;
case 'hj':
echo "Gold Member";
break;
default:
echo "Diamond Member";
}
echo "Successfully upgraded to";
switch(trim($_POST[' new_level'])){
case 'bj':
echo "Platinum Member";
break;
case 'hj':
echo "Gold Member";
break;
default:
echo "Diamond Member";
}
?>





4 Add data
4.1 Create add_member.php

Copy code The code is as follows:



Add new member

New member



Number:

Name:

Gender:
Female
Male

Age:< br />
Level:


< ;input type="submit" value="OK" />




4.2 Create newmember.php
Copy code The code is as follows:



Add member


$link=mysql_connect("localhost","root","123"); //Connect to the mysql server
$db=mysql_select_db( "club"); //Select database
mysql_query("set names GB2312",$link); //Set encoding method
$sql="Insert member(no,name,sex,age,level, date) values('"
.trim($_POST['no'])."','".trim($_POST['name'])."','"
.trim($ _POST['sex'])."','".trim($_POST['age'])."','"
.trim($_POST['level'])."',now( ))";
$result=mysql_query($sql,$link); //Execute select query
$m_id=mysql_insert_id($link); //Get the id of the newly inserted member record
if( trim($_POST['level'])=="hj") //Judge new member discounts
{
$sql="Update member set level='bj' where id='".$m_id. "'";
$result=mysql_query($sql,$link); //Execute membership upgrade discount
$text="Have enjoyed the discount and upgraded to platinum member.";
}
$ sql="Select *,date_format(date,'%Y-%c-%d') as join_date from member "
."where id='".$m_id."'";
$result= mysql_query($sql,$link); //Execute select query
if($row=mysql_fetch_array($result))
{
echo "New member information:
";
echo "Number: ".$row['no']."
";
echo "Name: ".$row['name']."
" ;
echo "Gender:".($row['sex']==1?"Female":"Male"."
");
echo "Age:".$ row['age']."
";
echo "Level:".$row['level']."
";
echo "Join:" .$row['join_date']."
";
}
echo "New member".$row['name']."Added successfully".$text;
?>





5 Create a class database connection
5.1 Create the cls_mysql.php class file

Copy the code The code is as follows:

class cls_mysql
{
protected $link_id;
function __construct($dbhost,$dbuser,$dbpw,$dbname='',$charset= 'GB2312')
{
if(!($this->link_id=mysql_connect($dbhost,$dbuser,$dbpw)))
{
$this->ErrorMsg(" Can't pConnect MySQL Server($dbhost)!");
}
mysql_query("SET NAMES ".$charset,$this->link_id);
if($dbname)
{
if(mysql_select_db($dbname,$this->link_id)===false)
{
$this->ErrorMsg("Can't select MYSQL database($dbname)!" );
return false;
}
else
{
return true;
}
}
}
public function select_database($dbname)
{
return mysql_select_db($dbname,$this->link_id);
}
public function fetch_array($query,$result_type=MYSQL_ASSOC)
{
return mysql_fetch_array($query ,$result_type);
}
public function query($sql)
{
return mysql_query($sql,$this->link_id);
}
public function affected_rows ()
{
return mysql_affected_rows($this->link_id);
}
public function num_rows($query)
{
return mysql_num_rows($query);
}
public function insert_id()
{
return_insert_id($this->link_id);
}
public function selectLimit($sql,$num,$start=0)
{
if($start==0)
{
$sql.=' LIMIT '.$num;
}
else
{
$sql. =' LIMIT '.$start.', '.$num;
}
return $this->query($sql);
}
public function getOne($sql,$limited =false)
{
if($limited=true)
{
$sql=trim($sql.' LIMIT 1');
}
$res=$this ->query($sql);
if($res!=false)
{
$row=mysql_fetch_row($res);
return $row[0];
}
else
{
return false;
}
}
public function getAll($sql)
{
$res=$this->query($ sql);
if($res!==false)
{
$arr=array();
while($row=mysql_fetch_assoc($res))
{
$arr[]=$row;
}
return $arr;
}
else
{
return false;
}
}
function ErrorMsg ($message='',$sql='')
{
if($message)
{
echo " error info:$messagenn";
}
else
{
echo "MySQL server error report:";
print_r($this->error_message);
}
exit;
}
}
?>

5.2 Create test.php
Copy code The code is as follows:

include(" cls_mysql.php");
?>



Mysql class library test


$sql=" Select * from member";
$db=new cls_mysql('localhost','root','123','club','GB2312');
$result=$db->selectLimit($ sql,'3'); //Return 3 member information from the database
if($result)
{
while($row=$db->fetch_array($result))
{
echo "Member number: " .$row['no'].", Name: ".$row['name']."
";
}
}
?>




6 Summary
6.1 mysql_connect(): Establish a connection with the MySQL server
6.2 mysql_select_db(): Select a database
6.3 mysql_query(): Execute a database query
6.4 mysql_fetch_array(): Get database records
6.5 mysql_num_rows(): Get the number of records obtained by the query
6.6 mysql_affected_rows(): The number of rows affected by the latest operation
6.7 mysql_insert_id(): The ID value of the most recently inserted record

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/321489.htmlTechArticle1 Create database table: Copy the code as follows: create database club; create table member( id int(11) not null auto_increment, no varchar(5) not null, name varchar(10) not null,...
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the &quot;MySQL Native Password&quot; plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Tsinghua University and Zhipu AI open source GLM-4: launching a new revolution in natural language processing Jun 12, 2024 pm 08:38 PM

Since the launch of ChatGLM-6B on March 14, 2023, the GLM series models have received widespread attention and recognition. Especially after ChatGLM3-6B was open sourced, developers are full of expectations for the fourth-generation model launched by Zhipu AI. This expectation has finally been fully satisfied with the release of GLM-4-9B. The birth of GLM-4-9B In order to give small models (10B and below) more powerful capabilities, the GLM technical team launched this new fourth-generation GLM series open source model: GLM-4-9B after nearly half a year of exploration. This model greatly compresses the model size while ensuring accuracy, and has faster inference speed and higher efficiency. The GLM technical team’s exploration has not

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

How to handle database connection errors in PHP How to handle database connection errors in PHP Jun 05, 2024 pm 02:16 PM

To handle database connection errors in PHP, you can use the following steps: Use mysqli_connect_errno() to obtain the error code. Use mysqli_connect_error() to get the error message. By capturing and logging these error messages, database connection issues can be easily identified and resolved, ensuring the smooth running of your application.

See all articles