OK, I have worked out how to access the information from the database using phpMysqlAdmin to export to a csv file. However, all the data is saved in one field. As it is address information it would be more usable saved into separate fields for each input field. Presumably this would take some recoding of the module. I already have an email form script which will give me what I want so the question now is - how do I set up a form using my own script? Can I just change the form code so that the 'action' attribute points to my script?
ie in row 139 of view.php, change
action="<?php echo htmlspecialchars(strip_tags($_SERVER['PHP_SELF'])); ?>#wb_<?PHP echo $section_id;?>"
to
action="myformscript.php"