v2theg Reply #1, 1 year, 1 month ago
Do of the contact form add-ons for Revolution allow you to dump the data from a user-filled form to a text or .csv file?
<?php
$fp = fopen("/path/to/file/filename.csv", 'a');
fputcsv($fp, array(
$hook->getValue('first_name'),
$hook->getValue('last_name'),
$hook->getValue('email'),
));
fclose($fp);
return true;&hooks=`spam,email,FormItCSV,redirect`