Viewing Add PostgresSQL database to my site?

Add PostgresSQL database to my site?



User: Frank M. 6 years ago
We want to track people interested in our back pain cure. They will click and fill out a form (Everweb seems to only have a 'send me an email form', which seems like an extra unneeded step.)

We want to form to only collect their first name, last name and email address and to send them a link to a video.

Is it possible to do this using the Everweb form and modifying the code? or some way to make our own form which does this?

Thanks in advance
Doc
User: Ana F. 6 years ago
Hello,
I am no coder, but it seems interesting to figure this out so I tried - and it was fun :)

ok, this is what I did:
I added the Advanced contact form to a page, filled out the Email address to send the Form to, and set up the SMTP Settings, added the Email subject, then the form controls that ...

well, I published that to a local folder - to get the code and tried out some changes...
I think I got the solution :)

this is the code that gets generated:

code-code-code and finaly the button code :)

<button type="submit">Submit</button>
</p>
</div>

You wrote that you want to collect the data inserted from the customer but you want them to be send further to a video - a different page... so the solution had to be the button:

<button type="submit">Submit</button>

has to be changed to:

<button onclick="window.location.href='http://www.URL-OF-VIDEO-OR-WHATEVER.html'",type="submit">Submit</button>

Let me know if that worked for you :)


Last edit 6 years ago


Post Reply
You must login or signup to post.