I have a form that has an element like this :
In :
On Submit code - before sending email:
I have a line of php I want to set the value of the companyIDNumber. I've tried :
as well as
So it seams to me that the data structre that the email is pulling from isn't either of those, but I can't figure out what it is.
Thanks in advance.
Don Fletcher
BTW -- I'm using version 2.5 J1.5 RC3.1
<input type="hidden" name="companyIDNumber" value="" >
In :
On Submit code - before sending email:
I have a line of php I want to set the value of the companyIDNumber. I've tried :
JRequest::setVar('companyIDNumber', $returnArray['companyIDNum']);
as well as
$_POST['companyIDNumber'] = $returnArray['companyIDNum'];
So it seams to me that the data structre that the email is pulling from isn't either of those, but I can't figure out what it is.
Thanks in advance.
Don Fletcher
BTW -- I'm using version 2.5 J1.5 RC3.1