i want make a code for send a form to many sites like this:
<form method="POST" action="http://www.site1.com/form.php">
<table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
<tr>
<td width="25%" align="center"><font size="4">Name</font></td>
<td width="25%">
<input type="text" size="20" name="name"></td>
</tr>
<tr>
<td width="25%" align="center"><font size="4">Address</font></td>
<td width="25%">
<input type="text" size="20" name="adress"></td>
</tr>
<tr>
<td width="25%" align="center"><font size="4">E-mail</font></td>
<td width="25%">
<input type="text" size="20" name="mail"></td>
</tr>
<tr>
<td width="50%" align="center" colspan="2"><font size="4">
<input type=submit name=action value=send></font></td>
</tr>
</table>
</form>
but want send to more sites (
http://www.site1.com/form.php;http:/...1.com/form.php) not just to
http://www.site1.com/form.php
anyone can help?
thanks