Forums

Created a form but nothing happens?

dniezby 21 Jan, 2008
I created a new form and everything appears to be correct but for some reason, the submit and reset buttons don't do anything????

Any thoughts?
GreyHead 21 Jan, 2008
Hi dniezby,

Sorry, I'd need tt look at the form to have any idea what's happening. Is it on-line? Or can you take a Form backup and post it here or send it to me at the address in my sig.

Bob
dniezby 21 Jan, 2008
I'm sorry. I must have grown up around power lines...Maybe lead.
I screwed up the input type of button.

I made it type=button instead of type = submit.

It's working now. Just trying to get the uploads thing working now.

If you want to see the form, it's not live yet but you can see it here

Edited to add url tags<br><br>Post edited by: GreyHead, at: 2008/01/21 15:21
rbc303 28 Jul, 2008
I created a form, looks great and works on my static site, but I am not sure what I am doing wrong here, what I want is simple:
This is the code that my third party contacts provider sent me to place on my website so users can subscribe. When I go to enter my name and email, it looks like it is working but it is not sending the info to Contact Beacon? I placed all this code in the Form HTML sections, w/o the form tags.

Here is my code:

<action="http://contactbeacon.com/subscribe.php" method="post">
<input type="hidden" name="contact_list_id"
value="509ca44735021d4bc4c64501eab37855" />

<table>
<tr>
<th align="left">First Name</th>
<td align="left"><input type="text" name="first_name" size="32"/></td>
</tr>
<tr>
<th align="left">Last Name</th>
<td align="left"><input type="text" name="last_name" size="32"/></td>
</tr>
<tr>
<th align="left">E-mail</th>
<td align="left"><input type="text" name="email" size="32"/></td>
</tr>
<tr>
<td></td>
<td><input type="submit" value="Subscribe"/></td>
</tr>
</table>
GreyHead 28 Jul, 2008
Hi rbc303,

Remove this line
<action="http://contactbeacon.com/subscribe.php" method="post">
and put
http://contactbeacon.com/subscribe.php
in the OnSubmit URL in the Form URLs tab.

Bob
rbc303 28 Jul, 2008
THANK YOU!
Worked like a charm 😀
This topic is locked and no more replies can be posted.