kein plan ob es dir weiterhilft aber ich habe es so gemacht:
ich lasse ein php script öffnen welchem ich per get die nötigen daten mitgebe,
dieses script gibt dann per post das ganze an das eigentliche script weiter
Code:
<?php
function do_post_request($
url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
}
$ctx = stream_context_create($params);
$fp = @fopen($
url, 'rb', false, $ctx);
if (!$fp) {
throw new
Exception("Problem with $
url, $php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new
Exception("Problem reading data from $
url, $php_errormsg");
}
return $response;
}
$vorname = $_GET["dasperpostweitergebenvomprogramm"];
$
url = 'http://blablabla.de/deinscript.php';
$strPost = 'vorname='.$vorname;
do_post_request($
url, $strPost);
?>
ohh ich glaube ich habe mich voll verlesen sorry
passt gernich zum thema
mfg smallsmoker