【发布时间】:2017-09-12 16:47:12
【问题描述】:
今天我需要这个表格的帮助。它将以.vcf 格式将数据保存在vcard 中,并且此表单位于html 页面中,我无法提交到另一个页面。所以现在,如果我点击保存按钮,它会以 .vcf 扩展名正确下载,但文件中有整个 html 页面......我只需要下载 vcard,我使用的是从这里https://github.com/facine/vCard/blob/master/vCard.class.php 检索的类。 也许使用 simple_html_dom.php 我可以提取我需要的 div ...... 感谢您的帮助!
<form method="post" action="#">
<button name="btn_func" class="btn waves-effect waves-light red">
<span class="white-text">Salva nella rubrica</i></span>
</button>
<div id="savecard">
<?php
include('simple_html_dom.php');
include('vcard.php');
$card = new vCard();
$card->setnew("first_name", $params['user']->first_name);
$card->setnew("last_name", $params['user']->last_name);
$card->setnew("birthdate", $params['user']->birthdate);
$card->setnew("home_address", $params['user']->address);
if(isset($_POST['btn_func'])){
$card->download();
}
?>
</div></form>
【问题讨论】: