建立乙個表單
html檔案add
<
!doctype html>
"en"
>
"utf-8"
>
title<
/title>
<
/head>
"add.php" method=
"post"
>
學號:"text" name=
"number"
>
姓名:"text" name=
"name"
>
年齡:"text" name=
"age"
>
性別:"radio" name=
"***" value=
"男">男
"radio" name=
"***" value=
"女">女
"submit"
>
<
/form>
<
/body>
<
/html>
賦值插入資料庫
php檔案add
<?php
trycatch
(pdoexception $e
)$number
=$_post
['number'];
$name
=$_post
['name'];
$age
=$_post
['age'];
$***
=$_post
['***'];
$q=$db-
>
query
("select * from s_student where 學號=$number")
;$row=$q
->
fetch()
;if(!
"$row
[學號]")
else
list在網頁顯示表單,跳轉刪除
<?php
trycatch
(pdoexception $e
)?>
<
!doctype html>
"en"
>
"utf-8"
>
"viewport"
content=
"width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
>
"x-ua-compatible" content=
"ie=edge"
>
document<
/title>
<
/head>
"1">
學號<
/th>
姓名<
/th>
年齡<
/th>
性別<
/th>
刪除<
/th>
<
/tr>
<?php$q=
$db-
>
query
("select * from s_student");
while
($row=$q
->
fetch()
)?>
<
/table>
<
/body>
<
/html>
刪除功能
<?php
trycatch
(pdoexception$e)
$number
=$_get
['學號'];
echo
"$number
1";$sql
="delete from s_student where 學號=?"
;$stmt
=$db
->
prepare
($sql);
$stmt
->
bindvalue(1
,"$number")
;$stmt
->
execute()
;$affect_row
=$stmt
->
rowcount()
;if($affect_row
)else
$stmt
=null
;$pdo
=null
;```*
*
php提交表單處理,PHP表單處理
我們可以在php中建立和使用表單。要獲取表單資料,需要使用php超級元組 get和 post。表單請求可以是get或post。要從get請求中檢索資料,需要使用 get,而 post用於檢索post請求中的資料。php get表單 get請求是表單的預設請求。通過get請求傳遞的資料在url瀏覽器上...
php 清空表單,清理和驗證表單php
完全陷入了困境 php的新手,並進行了簡單的表單提交 建立帳戶頁面 以傳送到mysql資料庫,因此對問題的寬恕表示歉意。我不確定在傳送資料之前如何正確驗證和清除資料。但是我在插入資料庫時 使用的是pdo和佔位符,所以我認為這一方面已經涵蓋了。這被傳送到乙個名為createaccount.php的單獨...
PHP 環境塔建
快速搭建環境可用軟體 每種語言的第一步都是要先搭建環境 wamp windows系統下搭建php開發環境 l linux a apache m mysql p php 架構 php 管理軟體 apache 客戶端 伺服器管理軟體 靜態頁面 客戶端 伺服器管理軟體 動態頁面 php 頁面處理變成靜態頁...