Birisi değişkenleri göndermek konusunda bana yardımcı ve bu sayfaya yazı takip misiniz?
Selamlar Phil
Bunu yapmak için CURL kullanabilirsiniz:
$ch = curl_init();
$data = array('name' => 'Foo', 'bar' => 'goo');
curl_setopt($ch, CURLOPT_URL, 'http://myserver.com/post.php');
//post the data
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
//enable RETURN_TRANSFER so curl_exec() returns result of the request
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
echo $result;