Blogger Information
Blog 59
fans 0
comment 1
visits 48143
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
For(), while(),foreach(),实现索引数组 关联数组的遍历-2018年4月18日
白猫警长的博客
Original
780 people have browsed it

实例

<?php 

echo '<fieldset style="width:300px; height:auto; margin:auto;">';
echo '<legend style="text-align:center;"><h2>个人信息</h2></legend>';

echo '<p>姓名:';
echo '<input type="text">';	
echo '</p>';

echo '<p>性别:';
$sexs = ['男','女','保密'];
foreach($sexs as $value){
	echo '<input type="radio" name="$sexs" id='.$value.' value='.$value.'>'.'<label for='.$value.'>'.$value.'</label>';
}
echo '</p>';


$ones = ['云南省','江西省','上海省','北京省','湖南省','湖北省','广东省','杭州省'];
$onws = ['某某市','某某市','某某市','某某市','某某市','某某市','某某市','某某市'];
echo '<p>出生地:';
//出生地省级
echo '<select name="ones">';
	$i = 0;
	while ($i<count($ones)){
		echo '<option value='.current($ones).'>'.current($ones).'</option>';
		next($ones);
		$i++;
	}
echo '</select>';

//出生地,市级
echo '<select name="onws">';
	$i = 0;
	while ($i<count($onws)){
		echo '<option value='.current($onws).'>'.current($onws).'</option>';
		next($onws);
		$i++;
	}
echo '</select>';
echo '</p>';

echo '<p>出生日期:';
//生成年份
echo '<select name="born">';
	for($i=1918; $i<=2018; $i++) {
		echo '<option value='.$i.'>'.$i.'年</option>';
	}
echo '</select>';

//生成月份
echo '<select name="born">';
	for($i=1; $i<=12; $i++) {
		echo '<option value='.$i.'>'.sprintf("%02d",$i).'月</option>';
	}
echo '</select>';

//生成天数(日数)
echo '<select name="born">';
	for($i=1; $i<=31; $i++) {
		echo '<option value='.$i.'>'.sprintf("%02d",$i).'日</option>';
	}
echo '</select>';
echo '</p>';

//喜欢的电影
echo '<p style="overflow: hidden;">';
echo '<span style="float:left; height:100px;">最喜欢的电影:</span>';
$film = ['捉妖记2','美人鱼村','奇门遁甲','二流太傅之赤霄剑','大唐嘻游记','破·局'];
//显示数组的length数量
array_splice($film, 6);
//将数组进行替换 array_splice(数组,开始位置,替换数量,替换数组内容)
//$film数组中 从0开始数第3个位置起,将后面3个值进行替换
array_splice($film, 2, 3, ['环太平洋','金刚狼3','霸王别姬']);

$i = 0;	//初始值
while ($i < count($film))
{
	echo '<input type="checkbox" id='.current($film).' name="film[]" value='.current($film).'> <label for='.current($film).'>'.current($film).'</label> ';
	next($film);
	$i++;
}
echo '</p>';

echo '<p style="text-align:center;">';
echo '<button style="margin-right:10px;">提交</button><button>重置</button>';
echo '</p>';
echo '</fieldset>';

 ?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


效果预览图:

1.png

Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post