在网页中嵌入ppt文件

Embed ppt file in webpage

我目前在网页中打开 .ppt/.pptx 文件时遇到问题。我目前将所有 "uploaded" 文件都放在一个文件夹中,并且能够打开该文件夹中的 .html/.txt 文件,但不能打开 .ppt/.pptx。每当我尝试时,都会弹出一个新的 window 并且 Windows 上传器开始 运行。

<?php
$target_dir = "C:\Apache\htdocs\upload\";
$target_file = $_FILES['file']['name'];
  ?>

<iframe src = "upload/"<?php echo $target_file; ?>"  name = "iframe_s" id = "download" style = "display:none"></iframe>

  <a href = "upload/"<?php echo $target_file; ?>" target = "iframe_s">Click here to view files</a>

在上面的代码中,我尝试列出文件夹中的所有文件,目标是用户可以单击其中一个文件,然后该文件将在网页内打开。我现在遇到的主要问题是让程序分别将不同的 .ppt url 附加到不同的文件。

提前致谢!

针对您的问题"How to upload to Google Docs"。

我的第一个答案:Why don't you search properly???

如果还没有找到。然后,(取自here

您将使用 Google 文档 API 使用带有数据的简单 HTTP POST 上传它们。以下是如何上传和转换文档的说明:http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#UploadingDocs

link 将为您提供示例,以及您需要做的所有事情。

更准确地说,如果您想上传 pdf,这就是您要查找的内容:http://code.google.com/apis/documents/docs/3.0/developers_guide_protocol.html#ResumableUploadPUT

Python Google Documents API guide

PHP Google Documents API guide