Hi,
The below code is to display all data from an excel page in a table. How do I fix the table right for it to display correctly.
How do I set font type, size, color, etc. I want to make it small enough to fit on my webpage.
thanks.
<table>
<tr>
<?php
echo '<table>';
echo '<tr><td></td><td>';
for ($i = 1; $i <= $data->sheets[0]['numRows']; $i++) {
for ($j = 1; $j <= $data->sheets[0]['numCols']; $j++) {
echo '</td><td></td><td>';
echo $data->sheets[0]['cells'][$i][$j];
echo '</td></tr>';
}
echo "\n";
}
echo '</td><tr></tr>';
echo '</table>';
Kevin.