Gossamer Forum
Home : Products : DBMan : Discussions :

dbman as a FRONT/BACK END for online forms submission

Quote Reply
dbman as a FRONT/BACK END for online forms submission
ON my website I am using dbman as a Front End and Back End of Forms Submission.



In my program the users go online and submit data which stores in a database. The full URL is embeded inside Web Page so it looks like that the form is part of the website. Now the problem is once they submit Data dbman shows "ADD SUCCESS" routine which hides our website.

Is there any way that after successful submission of data client will be able to re-direct to a thank you page on our website.

Many thanks if someone could help.

Regards
Quote Reply
Re: [Rashid12] dbman as a FRONT/BACK END for online forms submission In reply to
Yep, but you'll have to modify the "html.pl" file. Look for the section called html_add_success or modify_succes (if you let them modify) and place in whatever text/html code you want -- ie, make that section print your 'thank you page' OR you can strip out all othe code there and place in a meta tag that will forward to a certain page.

Example:

Code:
<body bgcolor="#FFFFFF">
<META HTTP-EQUIV = REFRESH CONTENT = "0; URL=http://mydomain.com/thanks.html">
</body>