function kaynak($kaynak){
$ch = curl_init();
	curl_setopt($ch, CURLOPT_URL, $kaynak); 
	curl_setopt($ch, CURLOPT_HEADER , 1);
	curl_setopt($ch, CURLOPT_COOKIEJAR, dirname(__FILE__).'/cerez.txt');
	curl_setopt($ch, CURLOPT_POST, true);
	curl_setopt($ch, CURLOPT_REFERER, $kaynak);
	curl_setopt($ch, CURLOPT_POSTFIELDS,"what=login&username=KULLANICIADİN&password=ŞİFREN&logmein=1&usradult=1");
	curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
	curl_exec($ch) or die("<font color='black'><center>Giris Yapamadin artist</center>\n");
$data = curl_exec($ch);
curl_close($ch);
return $data;
}