Dear All,
I need to send some data from my site to another site, but i do not want to hit that site. Is there any option.
Currently i am using form to doing it but after submitting it, i do not want to transfer control to another site.
I needed immediate help.
Thanking you.
Regards
Kamill
[PHP]
<form action="memberl ogin.php" method="get" >
<input type="hidden" name="Amount[]" value="<?php echo $product_final_ price ?>" />
<input type="hidden" name="Order_Cod e[]" value="<?php echo $myorder_code ?>" />
<input type="hidden" name="Subscript ion_ID[]" value="<?php echo $product_unit ?>" />
<input type="hidden" name="Username" value="<?php echo $usernamee ?>" />
<input type="hidden" name="Email" value="<?php echo $useremaill ?>" />
<input type="hidden" name="Remarks" value="<?php echo $customer_note ?>" />
<input type="submit" name="submit" value="OK" />
</form>
[/PHP]
I need to send some data from my site to another site, but i do not want to hit that site. Is there any option.
Currently i am using form to doing it but after submitting it, i do not want to transfer control to another site.
I needed immediate help.
Thanking you.
Regards
Kamill
[PHP]
<form action="memberl ogin.php" method="get" >
<input type="hidden" name="Amount[]" value="<?php echo $product_final_ price ?>" />
<input type="hidden" name="Order_Cod e[]" value="<?php echo $myorder_code ?>" />
<input type="hidden" name="Subscript ion_ID[]" value="<?php echo $product_unit ?>" />
<input type="hidden" name="Username" value="<?php echo $usernamee ?>" />
<input type="hidden" name="Email" value="<?php echo $useremaill ?>" />
<input type="hidden" name="Remarks" value="<?php echo $customer_note ?>" />
<input type="submit" name="submit" value="OK" />
</form>
[/PHP]
Comment