Hi there,
I've been having some issues exporting XSL data for my form.
I have it so that it's writing to an xsl file successfully with each submit, however after each test submission, it's simply over writing the xsl file when I want to save each submission made.
Can someone point me in the right direction as to what I need to do?
The DB Save currently has this, which I wrote based off information I've found here in the forums:
I've been having some issues exporting XSL data for my form.
I have it so that it's writing to an xsl file successfully with each submit, however after each test submission, it's simply over writing the xsl file when I want to save each submission made.
Can someone point me in the right direction as to what I need to do?
The DB Save currently has this, which I wrote based off information I've found here in the forums:
<?php
$form->data["xlsData"][1]["title"] = $form->data["title"];
$form->data["xlsData"][1]["firstname"] = $form->data["firstname"];
$form->data["xlsData"][1]["lastname"] = $form->data["lastname"];
$form->data["xlsData"][1]["gender"] = $form->data["gender"];
$form->data["xlsData"][1]["address"] = $form->data["address"];
$form->data["xlsData"][1]["city"] = $form->data["city"];
$form->data["xlsData"][1]["state"] = $form->data["state"];
$form->data["xlsData"][1]["zip"] = $form->data["zip"];
$form->data["xlsData"][1]["phone"] = $form->data["phone"];
$form->data["xlsData"][1]["email"] = $form->data["email"];
$form->data["xlsData"][1]["cashcheck"] = $form->data["cashcheck"];
$form->data["xlsData"][1]["card"] = $form->data["card"];
?>