01.
<?
02.
$i
=1;
03.
while
(
$xlSheet1
->Cells->Item(
$i
,1) !=
""
)
04.
{
05.
?>
06.
<tr>
07.
<td><?=
$xlSheet1
->Cells->Item(
$i
,1);?></td>
08.
<td><?=
$xlSheet1
->Cells->Item(
$i
,2);?></td>
09.
<td><?=
$xlSheet1
->Cells->Item(
$i
,3);?></td>
10.
<td><?=
$xlSheet1
->Cells->Item(
$i
,4);?></td>
11.
<td><?=
$xlSheet1
->Cells->Item(
$i
,5);?></td>
12.
<td><?=
$xlSheet1
->Cells->Item(
$i
,6);?></td>
13.
</tr>
14.
<?
15.
$i
=
$i
+ 1;
16.
}
17.
?>