PHP 面向過程的儲存 註冊 修改 刪除

2021-08-28 12:15:22 字數 2875 閱讀 8114

賬號密碼

姓名性別

年齡手機號

操作 <?php

include "config.php";

$link = mysqli_connect(host,user,password,database);

mysqli_set_charset($link,"utf8");

$sql_1 = "select * from"." text";

$result = mysqli_query($link,$sql_1);

$get_result = mysqli_fetch_all($result,mysqli_assoc);

foreach ($get_result as $value)

?>

返回 

$data = mysqli_fetch_assoc($result); //mysql_fetch_assoc() 從結果集中取得一行作為關聯陣列

?>

recevie.php

<?php 

include_once "config.php";

$link = mysqli_connect(host,user,password,database);

mysqli_set_charset($link,"utf8");

isset($_get['id'])?$id=$_get['id'] : $id='';

$type = $_get["type"];

switch ($type)

if ($_post["pass"] !== $_post["re_pass"])

mysqli_query($link,$sql_3);

if (mysqli_affected_rows($link)>0)else

break;

case "delete": //刪除

$sql_4 = "delete from"." text where id='".$id."';";

mysqli_query($link,$sql_4);

header("location:homepage.php");

break;

case "register": //註冊

$number = $_post["num"];

$password = $_post["pass"];

$re_password = $_post["re_pass"];

$name = $_post["name"];

$*** = $_post["***"];

$age = $_post["age"];

$phone = $_post["phone"];

if ($password !== $re_password)

if (!$link)

mysqli_set_charset($link,"utf8");

$sql_1 = "select number "."from text";

$data_1 = mysqli_query($link,$sql_1);

$result_1 = mysqli_fetch_all($data_1);

foreach ($result_1 as $value)

}switch ($***)

//新增使用者

$sql_2 = "insert into"." text value(null,,,'','',,)";

$data_2 = mysqli_query($link,$sql_2);

if ($data_2)else

}// echo mysqli_insert_id($link); //可以用來獲取最後插入那條資料的id號

config.php

<?php 

define("host","localhost");

define("user","root");

define("password","985211");

define("database","text");

修改內容的儲存過程

set ansi nulls on set quoted identifier on goalter procedure dbo updatenews newsid int,title nvarchar 100 content text,catids varchar 200 error nvarch...

PHP中的物件導向和面向過程

本文針對的讀者 本文針對盼看懂得php中有關物件導向與面向過程兩種程式設計方法的讀者,包含新手和老手。假設讀者對php及類的應用有必定程度的熟悉。簡介 真正的天才具有準確評價不斷定的,有風險的和牴觸的資訊的才能。邱吉爾 應用很多程式語言時,你通常只能應用物件導向或面向過程二者之一的程式設計方法。而在...

PHP中的物件導向和面向過程

本文針對的讀者 本文針對盼看懂得php中有關物件導向與面向過程兩種程式設計方法的讀者,包含新手和老手。假設讀者對php及類的應用有必定程度的熟悉。簡介 真正的天才具有準確評價不斷定的,有風險的和牴觸的資訊的才能。邱吉爾 應用很多程式語言時,你通常只能應用物件導向或面向過程二者之一的程式設計方法。而在...