ahh
header("Content-type: application/vnd.ms-excel");
header("Content-Disposition: attachment; filename=\"test.xls\"");
html is outputted to test.xls and it works.
however there are no excel gridlines. you know the grey gridlines on every sheet!
how do i enable them by default cause I have to go to options every time.
I know
appXL.activesheet.PageSetup.PrintGridlines = True where appxl is created as
follows Set appXL = CreateObject("Excel.application")
sets it in VB but in php? or html?