在网页中嵌入ppt文件

时间:2015-03-25 15:26:13

标签: php html upload embed webpage

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

<?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附加到不同的文件中。

提前谢谢!

1 个答案:

答案 0 :(得分:0)

对于您的问题&#34;如何上传到Google文档&#34;。

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

如果你仍然找不到它。然后,(摘自here

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

该链接将为您提供示例以及您所需要的所有内容。

更准确地说,如果你想上传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