OK what is the action of the form you are sending to and what method does it use. Lets assume that the form action is processform.php and the method is post. Ill create an example form that has the action processform.php.
Code: Select all
<form action'processform.php' method='post'>
<input type="text" name="name" value="DATA1" />
<input type="text" name="email" value="DATA2" />
<input type="radio" name="vote" value="DATA3" />
<input type="submit" value="val1" />
</form>
When you click the submit button on sitewithform.com it does the same thing as the following link (without spaces)
Code: Select all
sitewithform.com / processform.php ? name=DATA1 &email=DATA2 &vote=DATA3
So on yoursite.com if you process the form on your site with another php file that will create the dynamic link, like the one above, and will then follow that link using the php header command or meta reresh method this will process the data onto the site that you wanted to. I can go indepth with more code examples if you wish, but I wanted to make sure I was getting the jist of what you were saying first.