Forum Moderators: open
I have a link on my website that takes users to a form, (name, email etc). The site where the form is hosted is not my own, and looks much different than my site, and I find users less likely to fill out this form due do the change in looks.
Is is possible somehow to have a form on MY website, where when a user fills it out and presses send, the data they entered can be sent as if from the other form?
Wow im reallt not good at explaining, I hope you all understand what im trying to do.
You can just copy the form's HTML code, and change the "action" attribute to the URL the form needs to post to.
Let's say the actual form is on http://www.example.com/there/here.php, and has this form tag:
<form name="frm" action="here.php" method="POST"> <form name="frm" action="http://www.example.com/there/here.php" method="POST">