hello,
I making xml to excel report using by php. I sow problem and can't fix it.
when i use loop like this
for ($i=1; $i<5; $i++){
echo"<Row><Cell ss:StyleID=\"s5 2\"><Data ss:Type=\"Strin g\"> </Data><NamedCell ss:Name=\"Print _Area\"/>$i</Cell></Row>";
}
everthing generate ok, but if i use
for ($i=1; $i<11; $i++){
echo"<Row><Cell ss:StyleID=\"s5 2\"><Data ss:Type=\"Strin g\"> </Data><NamedCell ss:Name=\"Print _Area\"/>$i</Cell></Row>";
}
everthing is stoping and broke excel report generation. How need to fix it?
please help..
thanks in advance
I making xml to excel report using by php. I sow problem and can't fix it.
when i use loop like this
for ($i=1; $i<5; $i++){
echo"<Row><Cell ss:StyleID=\"s5 2\"><Data ss:Type=\"Strin g\"> </Data><NamedCell ss:Name=\"Print _Area\"/>$i</Cell></Row>";
}
everthing generate ok, but if i use
for ($i=1; $i<11; $i++){
echo"<Row><Cell ss:StyleID=\"s5 2\"><Data ss:Type=\"Strin g\"> </Data><NamedCell ss:Name=\"Print _Area\"/>$i</Cell></Row>";
}
everthing is stoping and broke excel report generation. How need to fix it?
please help..
thanks in advance
Comment