I have been using Chronoforms in Jv1.5 and this piece of script has worked well (taken and modified from your Chronoforms book).
Moving to Joolmla 1.7 and latest version of chromoforms, it doesn't work. I have inserted into 'on submit' events as the first action.
Is the code still ok and/or is there something else that I need to do?
Thanks for any advice
BW
<?php
$action_req = JRequest::getString('input_radio_25','','post');
$emails=array (
'Further Action Required' => 'j@hpa.org.uk',
);
$email_to_use = $emails[$action_req];
JRequest::setVar('email_to_use',$email_to_use);
$_POST['subject'] = "".$_POST['input_text_17']
?>
Moving to Joolmla 1.7 and latest version of chromoforms, it doesn't work. I have inserted into 'on submit' events as the first action.
Is the code still ok and/or is there something else that I need to do?
Thanks for any advice
BW