怎样用PHP实现下面的有外框线的表格?谢谢
之前th1th2th3th41-12-13-14-11-22-23-24-21-32-33-34-3之后th11-11-21-3th22-12-22-3th33-13-2...
之前
th1 th2 th3 th4
1-1 2-1 3-1 4-1
1-2 2-2 3-2 4-2
1-3 2-3 3-3 4-3
之后
th1 1-1 1-2 1-3
th2 2-1 2-2 2-3
th3 3-1 3-2 3-3
th4 4-1 4-2 4-3
我写了以下的程序,有了表格,但数组值却填不了,不知道是哪里出错,求助高手帮忙,感激不尽!
<?php
$arr=array(array('th1','th2','th3','th4'),array('1-1','2-1','3-1','4-1'),
array('1-2','2-2','3-2','4-2'),array('1-3','2-3','3-3','4-3'));
echo'<table width="200" border="1">';
for($i=0;$i<=3;$i++){
echo'<tr>';
for($j=0;$j<=3;$j++){
echo'<td>$arr[$i][$j]</td>';
}
echo'</tr>';
}
echo'</table>';
echo'<table width="200" border="1">';
for($i=0;$i<=3;$i++){
echo'<tr>';
for($j=0;$j<=3;$j++){
echo'<td>$arr[$j][$i]</td>';
}
echo'</tr>';
}
echo'</table>';
?> 展开
th1 th2 th3 th4
1-1 2-1 3-1 4-1
1-2 2-2 3-2 4-2
1-3 2-3 3-3 4-3
之后
th1 1-1 1-2 1-3
th2 2-1 2-2 2-3
th3 3-1 3-2 3-3
th4 4-1 4-2 4-3
我写了以下的程序,有了表格,但数组值却填不了,不知道是哪里出错,求助高手帮忙,感激不尽!
<?php
$arr=array(array('th1','th2','th3','th4'),array('1-1','2-1','3-1','4-1'),
array('1-2','2-2','3-2','4-2'),array('1-3','2-3','3-3','4-3'));
echo'<table width="200" border="1">';
for($i=0;$i<=3;$i++){
echo'<tr>';
for($j=0;$j<=3;$j++){
echo'<td>$arr[$i][$j]</td>';
}
echo'</tr>';
}
echo'</table>';
echo'<table width="200" border="1">';
for($i=0;$i<=3;$i++){
echo'<tr>';
for($j=0;$j<=3;$j++){
echo'<td>$arr[$j][$i]</td>';
}
echo'</tr>';
}
echo'</table>';
?> 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询