Home Backend Development PHP Tutorial php 简单的增删改查

php 简单的增删改查

Jun 20, 2016 pm 12:37 PM

dbconn.php

// 创建数据库连接

$con = mysql_connect("localhost",'root','') or die('error:'.mysql_error());

mysql_select_db('hyxx',$con) or die('error:'.mysql_error());

mysql_query('set NAMES utf8');

?>

adduser.php

新增用户

     

     

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

         

 

 

用户名
密码
性别
年龄
出生年月  

         

         

         

         

         

         

         

         

         

         

         

         

         

          年

         

         

         

         

         

         

         

         

         

         

         

         

         

         

          月

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

          日

       

爱好
个人简介

     

     

     

adddo.php

require_once 'inc/dbConn.php';

////////////////////

///获取用户信息

////////////////////

$user_id = $_POST['user_id'];

$user_name = $_POST['user_name'];

echo $user_name;

$password= $_POST['password'];

if($_POST['sex']=='男')

{

  $sex=1;

}

else if($_POST['sex']=='女')

{

    $sex=2;

}

else $sex=3;   

;

$age = $_POST['age'];

$birthday_y = $_POST['birthday_y'];

$birthday_m = $_POST['birthday_m'];

$birthday_d = $_POST['birthday_d'];

$birthday=mktime(0,0,0,$birthday_m,$birthday_d,$birthday_y);

$hobby = $_POST['hobby'];

$profile = $_POST['profile'];

$addTime=mktime(date("h"),date("m"),date("s"),date("m"),date("d"),date("Y"));

$lastLoginTime=$addTime;

  $sql = "insert into user (username,password,sex,age,birthday,hobby,profile,add_time,last_login) ".

  "values('$user_name','$password','$sex','$age','$birthday','$hobby','$profile','$addTime','$lastLoginTime')";

  echo $sql;

  // 执行sql语句

  mysql_query($sql,$con);

  // 获取影响的行数

  $rows = mysql_affected_rows();

  // 返回影响行数

  // 如果影响行数>=1,则判断添加成功,否则失败

  if($rows >= 1){

    alert("添加成功");

    href("userListt.php");

  }else{

    alert("添加失败");

//   href("addUser.php");

    }

function alert($title){

  echo "";

}

function href($url){

  echo "";

}

?>

userlist.php

会员信息列表

 

   

   

   

   

   

   

   

   

   

   

   

   

   

require_once 'inc/dbConn.php';

//这是啥东东。。

date_default_timezone_set("PRC");

//读数据。。。

  $sql = "select * from user order by id asc";

  $result = mysql_query($sql,$con);

  $userList = '';

  while($rs = mysql_fetch_array($result)){

        $userList[] = $rs;

    }

          // 循环用户列表

        foreach ($userList as $user){

          echo "

             

             

             

             

             

             

             

             

             

             

             

             

          ";

        }

?>

 

id 用户名 密码 性别 年龄 出生年月 爱好 注册时间 最后登录时间 操作
".$user['id']." ".$user['username']." ".$user['password']." ".$user['sex']." ".$user['age']." ".date("Y-m-d",$user['birthday'])." ".$user['hobby']." ".date("Y-m-d",$user['add_time'])." ".date("Y-m-d",$user['last_login'])."

             

             

                                

             

 

delete.php

// 包含数据库文件

require_once 'inc/dbConn.php';

// 获取删除的id

$id = $_GET['id'];

$row = delete($id,$con);

if($row >=1){

  alert("删除成功");

}else{

  alert("删除失败");

}

// 跳转到用户列表页面

href("userListt.php");

function delete($id,$con){

  $sql = "delete from user where id='$id'";

  // 执行删除

  mysql_query($sql,$con);

  // 获取影响的行数

  $rows = mysql_affected_rows();

  // 返回影响行数

  return $rows;

}

function alert($title){

  echo "";

}

function href($url){

  echo "";

}

?>

edituser.php

编辑用户

require_once 'inc/dbConn.php';

$userId=$_GET['id'];

//这是啥东东。。

date_default_timezone_set("PRC");

//读数据。。。

  $sql = "select * from user where id=".$userId;

  $result = mysql_query($sql,$con);

  $user = mysql_fetch_array($result);

?>

   

   

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

         

       

 

用户名 />
密码 />
性别

          /> 男

         /> 女

年龄 />
出生年月  

       

       

        $birday_y=date("Y",$user['birthday']);

        $birday_m=date("m",$user['birthday']);

        $birday_d=date("d",$user['birthday']);

        ?>

         

         

         

         

         

         

         

         

         

         

         

         

         

          年

         

         

         

         

         

         

         

         

         

         

         

         

         

         

          月

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

         

          日

       

爱好 />
个人简介

     

     

     

editdo.php

require_once 'inc/dbConn.php';

////////////////////

///获取用户信息

////////////////////

$user_id = $_POST['user_id'];

$user_name = $_POST['user_name'];

$password= $_POST['password'];

if($_POST['sex']=='男')

{

  $sex=1;

}

else if($_POST['sex']=='女')

{

    $sex=2;

}

else $sex=3;   

;

$age = $_POST['age'];

$birthday_y = $_POST['birthday_y'];

$birthday_m = $_POST['birthday_m'];

$birthday_d = $_POST['birthday_d'];

$birthday=mktime(0,0,0,$birthday_m,$birthday_d,$birthday_y);

$hobby = $_POST['hobby'];

$profile = $_POST['profile'];

$addTime=mktime(date("h"),date("m"),date("s"),date("m"),date("d"),date("Y"));

$lastLoginTime=$addTime;

  $sql = "update user set username='$user_name',password='$password',sex='$sex',age='$age',birthday='$birthday',hobby='$hobby',profile='$profile' where id='$user_id'";

  echo $sql;

  // 执行sql语句

  mysql_query($sql,$con);

  // 获取影响的行数

  $rows = mysql_affected_rows();

  // 返回影响行数

  // 如果影响行数>=1,则判断添加成功,否则失败

  if($rows >= 1)

  {

    alert("编辑成功");

    href("userListt.php");

  }else{

    alert("编辑失败");

//   href("addUser.php");

    }

function alert($title){

  echo "";

}

function href($url){

  echo "";

}

?>

detailUser.php

查看用户明细

require_once 'inc/dbConn.php';

$userId=$_GET['id'];

//这是啥东东。。

date_default_timezone_set("PRC");

//读数据。。。

  $sql = "select * from user where id=".$userId;

  $result = mysql_query($sql,$con);

  $user = mysql_fetch_array($result);

?>

   

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

       

         

       

 

用户ID
用户名
密码
性别

       

年龄
出生年月  

       

       

        $birday_y=date("Y",$user['birthday']);echo $birday_y."年";

        $birday_m=date("m",$user['birthday']);echo $birday_m."月";

        $birday_d=date("d",$user['birthday']);echo $birday_d."日";

        ?>

       

爱好
个人简介
返回用户列表

     

     

     


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

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 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
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)

Working with Flash Session Data in Laravel Working with Flash Session Data in Laravel Mar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIs cURL in PHP: How to Use the PHP cURL Extension in REST APIs Mar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel Tests Simplified HTTP Response Mocking in Laravel Tests Mar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon 12 Best PHP Chat Scripts on CodeCanyon Mar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

PHP Logging: Best Practices for PHP Log Analysis PHP Logging: Best Practices for PHP Log Analysis Mar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

HTTP Method Verification in Laravel HTTP Method Verification in Laravel Mar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::download Discover File Downloads in Laravel with Storage::download Mar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles