How to modify data in database in php

藏色散人
Release: 2023-03-06 15:58:01
Original
12239 people have browsed it

php method to modify data in the database: first create "userinfo_update.php" to query user information; then obtain the user number through GET to query user information; finally create the "update.php" file for modification Just user information.

How to modify data in database in php

Recommended: "PHP Video Tutorial"

Create userinfo_update.php, used to query user information, display first Information, modifying:

First obtain the user number through GET to query user information:

 $sql = "select * from user_info where user_id='".$_GET['userId']."'";
 $result = mysql_query($sql,$con);
 if($row = mysql_fetch_array($result)){
}
Copy after login

How to modify data in database in php

Page effect:

How to modify data in database in php

Create the update.php file to modify user information:

The mysql_affected_rows() function is used to return the number of record rows affected by the previous MySQL operation.

//通过post获取页面提交数据信息
$userId = $_POST[userId];
$userName = $_POST[userName];
$userAge = $_POST[userAge];
 
$sql = "update user_info set user_name='".$userName."',user_age=".$userAge." where user_id='".$userId."'";
mysql_query($sql,$conn);//执行SQL
$mark  = mysql_affected_rows();//返回影响行数
$url = "userinf_select.php";
Copy after login

How to modify data in database in php

Running results

How to modify data in database in php

Create delete.php file , Complete the function of deleting user information:

$userId = $_GET['userId'];
 
include 'connection.php';
 
$sql = "delete from user_info where user_id='".$userId."'";
 
mysql_query($sql,$con);
 
$mark  = mysql_affected_rows();//返回影响行数
 
if($mark>0){
 echo "删除成功";
}else{
 echo  "删除失败";
}
 
mysql_close($con);
Copy after login

How to modify data in database in php

## Running results:

How to modify data in database in php

successfully deleted

How to modify data in database in php

The above is the detailed content of How to modify data in database in php. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
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
Popular Tutorials
More>
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!