本文主要为广大网友提供“php结合表单实现一些简单功能的例子”,希望对需要php结合表单实现一些简单功能的例子网友有所帮助,学习一下!
例子一(POST提交表单):html显示出来的页面。
提交表单后php处理出来的页面。在这个例子中,我输入一个单词,然后给定一个长度,将单词等分成该长度的块。
演示了通过POST方法提交表单。
例子二(单选,GET接受表单):
复制代码 代码如下:
<form action="<?php echo
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
Select your personality attributes:<br/>
<select name="att[]" >
<option value="perky">perky</option>
<option value="morese">morose</option>
<option value="thinking">thinking</option>
<option value="feeling"> feeling</option>
<option value="thrifty">speed-thrift</option>
<option value="prodigal">shopper</option>
</select>
<br>
<input type ="submit" name="s" value="Record my personality">
</form>
<?php
if (array_key_exists(''s'',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
$des = implode('' '',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
echo "You have a $des personality.";
}
?>
例子三(多选,GET接受表单):
注意到此时<select name="att[]" multiple> 下划线告诉GET你传输的是个数组,黑体字部分则是表示改选择框为多选框
复制代码 代码如下:
<form action="<?php echo
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
Select your personality attributes:<br/>
<select name="att[]" multiple>
<option value="perky">perky</option>
<option value="morese">morose</option>
<option value="thinking">thinking</option>
<option value="feeling"> feeling</option>
<option value="thrifty">speed-thrift</option>
<option value="prodigal">shopper</option>
</select>
<br>
<input type ="submit" name="s" value="Record my personality">
</form>
<?php
if (array_key_exists(''s'',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
$des = implode('' '',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
echo "You have a $des personality.";
}
?>
例子四(复选框checkbox): 同样name="att[]"是告诉GET你传输的是一个数组, checked 则表示该选项为初始默认选择,同样上例,在标签内加入 selected="selected"也可以
让多选初始默认选择。
复制代码 代码如下:
<form action="<?php echo
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
Select your personality attributes:<br/>
perky<input type="checkbox" name="att[]" value="perky" checked /> <br/>
morose<input type="checkbox" name="att[]" value="morose" checked /> <br/>
thinking<input type="checkbox" name="att[]" value="thinking" /> <br/>
feeling<input type="checkbox" name="att[]" value="feeling" /> <br/>
<br>
<input type ="submit" name="s" value="Record my personality">
</form>
<?php
if (array_key_exists(''s'',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
echo "<pre>";
print_r(
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
echo "</pre>";
if (is_null(
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
$des = implode('' '',
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
echo "You have a $des personality.";
}
?>
例子五(单选框): 注意,同一个选项即可的单选必须name相等
复制代码 代码如下:
<form>
男性:
<input type="radio" checked="checked" name="Sex" value="male" />
<br />
女性:
<input type="radio" name="Sex" value="female" />
<br>
<hr>
男性:
<input type="radio" checked="checked" name="Se" value="male" />
<br />
女性:
<input type="radio" name="Se" value="female" />
</form>
<p>当用户点击一个单选按钮时,该按钮会变为选中状态,其他所有按钮会变为非选中状态。</p>
例子六(stick form):一个表格如何要实现之前输入过的值在页面刷新后仍然存在可以如下
复制代码 代码如下:
<?php
$f =
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
?>
<form action = "<?php echo
网学推荐
免费论文
原创论文
文章排行榜
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn
All Rights Reserved
湘ICP备09003080号
temperature:
<input type="text" name="fa" value="<?php echo $f;?>" />;
<br/>
<input type="submit" name="Convert to Celsius" />
</form>
<?php
if (!is_null($f)){
$c = ($f-32)*5/9;
printf("%.2lf is %.2lfC",$f,$c);
}
?>
都是一些简单的表单处理~
Knowledge make me stronger!