Arkadaşlar internette araştırdım bulamadım
curl ile oturum açma yı yazdım aynısını oldu fakat 1-2 saniye sonra tekrardan olmadı bazı şeylerden dolayı olmamış ola bilir

index.html



<**** http-equiv="Content-Type" content="text/html; charset=utf-8" />
ݹelik Formu


Giri��rmu



Kullan��Ad��input type="text" name="UserName">

ߩfre:



$UserName = $_POST['UserName'];
$Password = $_POST['Password'];

function baglan ($url,$degerler){
$curl = curl_init();
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_POST, true);
curl_setopt($curl, CURLOPT_POSTFIELDS, $degerler);
curl_setopt($curl, CURLOPT_COOKIEJAR, "sil.txt");
curl_setopt($curl, CURLOPT_COOKIEFILE, "sil.txt");
curl_exec($curl);
curl_close($curl);
}
baglan("subdomain.abcdefsitesi.com","UserName=$UserName&Password=$Password");
if(baglan)
{
echo "oldu";
}
else{
echo "hata";
}
?>

BÖYLE YAPINCA
Object moved to here.
oldu

böyle oluyor HERE YE TIKLAYINCA subdomain.abcdefsitesi.com AÇILIYOR NE YAPMALIYIM?