I have a question.
Thanks in advance.
<tr>
<td>some data</td>
</tr>
<tr>
<td>data1</td>
<td>data2</td>
<td>data3</td>
</tr>
This is the code I've been calling the data:for($i = 0; $i < $lastRow; $i++){
echo $objPHPExcel->getActiveSheet()->getCell('B'.$i)->getValue();
echo "<br />";
}
But when I do that and export to a new xls file, it only shows:somedataIt is very strange for me and I couldn't figure it out. Please help me to figure this out.
data 1
Thanks in advance.