我們先看下面的**
form2.php
<html
>
<
head
><
title
>greetins eartyling
title
>
head
>
<
body
>
<
form
action
="formprocess2.php"
method
="post"
>
<
table
>
<
tr>
<
td>name
td>
<
td><
input
type
="text"
name
="name"
/>
td>
tr>
<
tr>
<
td>greetings
td>
<
td>
<
select
name
="greeting"
id=""
>
<
option
value
="hello"
>hello
option
>
<
option
value
="hola"
>hola
option
>
<
option
value
="bonjour"
>bonjour
option
>
select
>
td>
tr>
<
tr>
<
td>
td>
<
td><
input
type
="checkbox"
name
="debug"
checked
="checked"
/>display debug info
td>
tr>
<
tr>
<
td colspan
="2"
style
="text-align:center"
>
<
input
type
="submit"
name
="submit"
value
="submit"
/>
td>
tr>
table
>
form
>
body
>
html
>
formprocess2.php
<可以看到input元素的值都可以使用$_post("name")函式來獲得,不單單是文字框,單選框checkbox和下拉列表框select都可以,注意這裡checkbox如果選中獲取的值是"on",不是true,還有如果我們沒有選中checkbox使用$_post("debug")來獲取這個checkbox的值會報錯,因為$_post這個陣列中沒有這個元素。html
>
<
head
>
<
title
>greeting earthing
title
>
head
>
<
body
>
<?
php echo '';
if(isset($_post["debug"]))
?>
body
>
html
>
選中display debug info這個checkbox然後點選submit顯示內容如下:
degut:array
( [name] => 誰誰誰
[greeting] => bonjour
[debug] => on
[submit] => submit
)
PHP中特殊HTML元素的轉換
php專案開發過程中,經常需要對一些特殊字元進行處理,否則這些字元可能無法按輸出或輸出亂碼。下面對html標記中的一些常用特殊字元進行轉換。q 轉換為 q 轉換為 q 轉換為 q 轉換為 q 轉換為 其中,為html元素,為顯示的字串。例如,若想在頁面正常輸出如下 明日科技 則需要在html 中輸入...
HTML中的元素
這是我第一次寫部落格,我自己以前看了很多的部落格,覺得他們都寫的很好,於是我也來分享一下我的東西 首先介紹一下html中的元素如下 1.在html頁面中最大的元素就是元素其他標籤都應寫在它的裡面 2.其次就是 元素是所有頭部元素的容器。元素必須包含文件的標題元素,可以包含指令碼 樣式 資訊 以及其他...
HTML中的 元素用法
base元素指定當前頁面中所有鏈結的基礎路徑。如果沒有base的話,頁面裡的所有相對路徑在生成絕對路徑的時候都會以自己的物理位置作為預設的基礎路徑。舉例來說,www.aaa.com bbb ccc.html 中的基礎路徑是bbb資料夾內 在這裡,代表上當前路徑 bbb 代表上一級路徑 www.aaa...