Thanks for the response. This is what I have right now...
A form which submits to a PHP file. Both are in domain1.com. Domain1.com's PHP file grabs the form variables and then using Include() it relays the info to the otherdomain.com. Is this correct?
<?php
$PARAMS = ( count( $HTTP_POST_VARS ) )
? $HTTP_POST_VARS : $HTTP_GET_VARS;
include 'http://www.otherdomain.comt/scripts/dbscript.php?var1=var1&var2=var2';
?>
Is that all I need to pass variable data to otherdomain.com's PHP script? I've tried and so far no data in the database
