Hi There,
I am trying to bridge acajoom with chronoform. I have tried all the solution available here on this forum including the curl plugin as this seems the url problem.
I have the check list of newsletters in my form which is like this.
Now if more then one checkboxes selected I want to retain those values in array and I am passing that variable like this
But appaently user doesn't get signed up for any newsletter with the above code whereas if I use "hardcode" like this
user does get signed up.
Basically I want the dynamic values passing in to the acajoom sign up url.
Thanks
I am trying to bridge acajoom with chronoform. I have tried all the solution available here on this forum including the curl plugin as this seems the url problem.
I have the check list of newsletters in my form which is like this.
<input id="strRequestList[]" name="strRequestList[]" value="1" type="checkbox">
<input id="strRequestList[]" name="strRequestList[]" value="2" type="checkbox">
<input id="strRequestList[]" name="strRequestList[]" value="3" type="checkbox">
Now if more then one checkboxes selected I want to retain those values in array and I am passing that variable like this
index.php?option=com_acajoom&act=subscribe&name=$name&email=$email&listid=strRequestList[]
But appaently user doesn't get signed up for any newsletter with the above code whereas if I use "hardcode" like this
index.php?option=com_acajoom&act=subscribe&name=$name&email=$email&listid=1,2,3
user does get signed up.
Basically I want the dynamic values passing in to the acajoom sign up url.
Thanks