Excel embedded in a php page

2020-05-01 06:42发布

I have a client who wants to be able to embed an Excel document (one that is currently sitting on the same server as the HTML document) like how you would embed a Flash app on a page.

I'm correct in assuming this is not possible, right? Please confirm/deny so we can hopefully move on from this because he seems to think this is possible. We are on a LAMP setup so no .NET tricks, unfortunately.

标签: php excel
3条回答
萌系小妹纸
2楼-- · 2020-05-01 07:06

If this excel file doesn't contain any sensitive data, the best solution would be to use online service like Google Docs to upload document and get embed code (which is iframe with html table inside so most browsers should be able to display it correctly).

查看更多
Fickle 薄情
3楼-- · 2020-05-01 07:11

You are correct - at least, it can't be done cross-browser. You should just link to the Excel spreadsheet file.

Alternatively, if you only need to display the data, I'm sure you can find a PHP library that will read Excel files and display their contents in a HTML table.

查看更多
爷的心禁止访问
4楼-- · 2020-05-01 07:12

In theory:

<object data="foo.xls" type="application/vnd.ms-excel" height="500" width="500">
    <p>View <a href="foo.xls">data about foo bar baz</a> as an Excel spreadsheet</p>
</object>

I can't speak for browser support for this, but Microsoft do provide browser plug-ins for Office applications — you just usually only see them running full-browser-window.

Note that since this is "like Flash", the server side environment is irrelevant.

查看更多
登录 后发表回答