码迷,mamicode.com
首页 > 编程语言 > 详细

php数组

时间:2016-02-21 17:18:13      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 2 <html xmlns="http://www.w3.org/1999/xhtml">
 3 <head>
 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 5 <title>无标题文档</title>
 6 </head>
 7 
 8 <body>
 9 
10 <?php
11         
12     $nation = array(
13         array(‘n001‘,‘汉族‘),
14         array(‘n002‘,‘汉族‘),
15         array(‘n003‘,‘满族‘),
16         array(‘n004‘,‘苗族‘),
17         array(‘n005‘,‘维吾尔族‘)
18     );
19     
20     echo "<table width=‘100%‘ cellpadding=‘0‘ cellspacing=‘0‘ border=‘1‘>";
21     echo "<tr><td>代号</td><td>名称</td></tr>";
22     
23     for($i=0;$i<count($nation);$i++)
24     {
25         
26         echo "<tr><td>".$nation[$i][0]."</td><td>".$nation[$i][1]."</td></tr>";
27     }
28     
29     
30     echo "</table>";
31     
32     
33     
34 ?>
35 
36 </body>
37 </html>

 

php数组

标签:

原文地址:http://www.cnblogs.com/sihuiming/p/5205165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!