adding to a database
-
Hi, I have added a form to WordPress using the Mailchimp plugin. I have fields of: First name, Last name, phone number and email.
When I test this form and subscribe, only my first name and email are added to the Mailchimp database. It is not adding last name or phone number which are really important.
Can you tell me what I might be doing wrong? I will copy my form code below.
Many thanks! Tam<p>
<label for=”mc4wp_f%N%_fname”>First name:</label><input type=”text” name=”fname” value=”” placeholder=”Your first name” required/>
</p>
<p>
<label for=”mc4wp_f%N%_lname”>Last name:</label><input type=”text” name=”lname” value=”” placeholder=”Your last name” required/>
</p>
<p>
<label for=”mc4wp_f%N%_pnumber”>Phone number: </label><input type=”text” name=”pnumber” value=”” placeholder=”Your phone number” />
</p>
<p>
<label for=”mc4wp_f%N%_email”>Email address: </label>
<input type=”email” id=”mc4wp_f%N%_email” name=”email” required placeholder=”Your email address” />
</p>
<p>
<input type=”submit” value=”Sign up” />
</p>
- The topic ‘adding to a database’ is closed to new replies.