Hi Ian,
If you use HTTP report method you can add variable values to the report data as described in this topic:
To handle the report using PHP, please see Transmission of Report section in the user manual.
If you don’t use HTTP report, you can use jQuery AJAX to send the data, for example:
$.post('php/page/url', {
fullName: prez.variable('FULL NAME'),
email: prez.variable('EMAIL ADDRESS')
});
Regards