tags:

views:

37

answers:

1

I have to give the Html code of my order form to third parties. Once they register and payed they can copy and paste the html code from my site to their own site. but the date will be saved in my site with the reference of the reseller. How can I implement this kind of a section in my website. any body can help me. I am using php5 and mysql.

+1  A: 
<form action="http://example.com/" method="POST">
<input type="hidden" name="associate_id" value="some-identifier">
David Dorward