I am sending a legacy form using the values $first_name and $last_name and intead of plain text, they’re arriving as what looks like array items.
So...
Test Submission
….when looking at the submitted data, appears as
['Test'] ['Submission']
Why is this happening - and what can I do to submit this as plain text? It’s coming though to the email like this too.
Below are the form fields from my legacy form. This also looks the same when changed to first_name and last_name without the dollar prefix.
<input type="hidden" name="$fields" value="$consent,$first_name,$last_name,email">
<input type="hidden" name="$list_fields" value="$consent,$first_name,$last_name,emailconsent">
<input type="text" value="" name="$first_name" id="k_id_firstname" placeholder="First name" />
<input type="text" value="" name="$last_name" id="k_id_lastname" placeholder="Last name" />
<input type="email" value="" name="email" id="k_id_email" placeholder="Email" />
Any help appreciated. Thanks.