php中的html元素
2020-11-22 18:27
标签:style blog class code java ext javascript color strong int art 我们先看下面的代码 form2.php formprocess2.php 选中Display Debug info这个checkbox然后点击submit显示内容如下: 可以看到input元素的值都可以使用$_POST("name")函数来获得,不单单是文本框,单选框checkbox和下拉列表框select都可以,注意这里checkbox如果选中获取的值是"on",不是true,还有如果我们没有选中checkbox使用$_POST("debug")来获取这个checkbox的值会报错,因为$_POST这个数组中没有这个元素。 php中的html元素,搜素材,soscw.com php中的html元素 标签:style blog class code java ext javascript color strong int art 原文地址:http://www.cnblogs.com/tylerdonet/p/3702577.htmlhtml>
head>title>greetins eartylingtitle>head>
body>
form action="formprocess2.php" method="post">
table>
tr>
td>Nametd>
td>input type="text" name="name" />td>
tr>
tr>
td>Greetingstd>
td>
select name="greeting" id="">
option value="Hello">Hellooption>
option value="Hola">Holaoption>
option value="Bonjour">Bonjouroption>
select>
td>
tr>
tr>
td> td>
td>input type="checkbox" name="debug" checked="checked"/>Display Debug infotd>
tr>
tr>
td colspan="2" style="text-align:center">
input type="submit" name="submit" value="Submit"/>
td>
tr>
table>
form>
body>
html>
html>
head>
title>Greeting earthingtitle>
head>
body>
php
echo ‘
‘.$_POST["greeting"] ." ".$_POST["name"].‘ !
‘;
if(isset($_POST["debug"]))
{
echo ‘Degut:‘;
print_r($_POST);
echo ‘
‘;
}
?>
body>
html>Bonjour 谁谁谁 !
Degut:Array
(
[name] => 谁谁谁
[greeting] => Bonjour
[debug] => on
[submit] => Submit
)