Thanx for your hint on Curl.
So to post variables to different forms, I guess they would have to be in the same curl session, like :
Or is it totally illegal to do multiple posting in a curl session? I have not tried this code, only clipped from the manual and made som naive changes :
$ch = curl_init();
curl_setopt($ch,
CURLOPT_URL,"http://www.mysite.com/tester.phtml");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"postvar1=value1&postvar2=value2&postvar3=value3");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
"postvar4=value4&postvar5=value5&postvar6=value6");
curl_exec ($ch);
curl_close ($ch);
Could this work? (and why / why not if you have the time to explain..)