php数组生成html下拉列表的方法
程序员文章站
2023-11-28 08:18:16
本文实例讲述了php数组生成html下拉列表的方法。分享给大家供大家参考。具体如下:
这段代码可根据定义好的php数组动态生成一个html的下拉列表(select)...
本文实例讲述了php数组生成html下拉列表的方法。分享给大家供大家参考。具体如下:
这段代码可根据定义好的php数组动态生成一个html的下拉列表(select)
<?php //array contents array 1 :: value $myarray1 = array('cat','mat','fat','hat'); //array contents array 2 :: key => value $myarray2 = array('c'=>'cat','m'=>'mat','f'=>'fat','h'=>'hat'); //values from array 1 echo'<select name="words">'; //for each value of the array assign a variable name word foreach($myarray1 as $word){ echo'<option value="'.$word.'">'.$word.'</option>'; } echo'</select>'; //values from array 2 echo'<select name="words">'; //for each key of the array assign a variable name let //for each value of the array assign a variable name word foreach($myarray2 as $let=>$word){ echo'<option value="'.$let.'">'.$word.'</option>'; } echo'</select>'; ?>
希望本文所述对大家的php程序设计有所帮助。