1

我是初学者,刚刚学习 HTML。我只需要在这里指出正确的方向。您可以指出我的任何教程将不胜感激。

我正在尝试创建我在 JotForm 上创建的此表单的离线版本- http://form.jotform.us/form/40855701907154

我希望它将用户输入的数据保存到 Excel 文件中。

我尝试通过单击“将页面另存为”来离线保存页面,但没有出现“提交”按钮。

我一直在尝试理解本教程 - http://diveintohtml5.info/offline.html
我是否在记事本中打开 HTML 文件并尝试对其进行编辑?如果是这样,我该如何编辑它?

4

1 回答 1

-1

如果要将数据保存到 Excel 文件.. 您必须先将其存储在数据库中,然后在 php 中显示您的数据库,并带有此标题:

<?php
// excel raw data
header("Content-type: application/vnd-ms-excel");

// define the name "results.xls"
header("Content-Disposition: attachment; filename=results.xls");

// echo your database
include 'database.php';
?>

这是初学者最简单的方法......让我知道这是否适合你......

于 2014-03-28T23:19:54.167 回答