Forum Moderators: coopster
So I wonder if there is a PHP (.asp?) method of interviewing an excel spreadsheet - so that my client can make changes to the spreadsheet, upload it and any pages that reference one or more table cells are updated too.
I'm guessing I will need additional software on the server... It seems to me to be a very clunky way of doing things but as I say I need 'quick and dirty' - the simpler the better.
Cheers, Limbo.
[edited by: limbo at 9:13 am (utc) on Aug. 9, 2006]
Correct me if I'm wrong but, as far as I can tell by skimming the support docs on that site - that module creates excel files - I am looking for scripts that look for and display info from an existing spreadsheet on the server.
I want it to do something akin to this:
<table>
<tr>
<td>[cell info=[my_excel_table.xls]sheet1!$a$1]</td>
<td>[cell info=[my_excel_table.xls]sheet1!$b$1]</td>
<td>[cell info=[my_excel_table.xls]sheet1!$c$1]</td>
<td>[cell info=[my_excel_table.xls]sheet1!$d$1]</td>
</tr>
<tr>
<td>[cell info=[my_excel_table.xls]sheet2!$a$1]</td>
<td>[cell info=[my_excel_table.xls]sheet2!$b$1]</td>
<td>[cell info=[my_excel_table.xls]sheet2!$c$1]</td>
<td>[cell info=[my_excel_table.xls]sheet2!$d$1]</td>
</tr>
</table>
?
[pear.php.net...]
You can use Spreadsheet_Excel_Writer to output back to Excel as well:
[pear.php.net...]