本节内容:
php数组的小例子
如图:
例子:
<?php
/**
* php数组操作实例
* 实例表格状的结果打印
* // by www.jb200.com
*/
$a=array(array());?>
<table width="10" height="5" border="1" align="center" cellpadding="2" cellspacing="1">
<?php
for($i=0;$i<12;$i++)
{?>
<tr>
<?php
for($j=0;$j<12;$j++){
?>
<td width="10" height="10">
<?php $a[$i][$j]=($i+1)*($j+1); //主要代码
echo $a[$i][$j];?>
</td>
<?php
}
?>
</tr>
<?php
}
?>
</table>