<?php 
	$XPost = "<XMLRoot><isim>hasan</isim><soyad>yasar</soyad></XMLRoot>"; 
	$url = "http://www.hasanyasar.com/dnm/read.php"; 
	$ch = curl_init();  
	curl_setopt($ch, CURLOPT_URL,$url); 
	curl_setopt($ch, CURLOPT_POST, 1 );
	curl_setopt($ch, CURLOPT_HEADER, 0); 
	curl_setopt($ch, CURLOPT_RETURNTRANSFER,1); 
	curl_setopt($ch, CURLOPT_TIMEOUT, 4); 
	curl_setopt($ch, CURLOPT_POSTFIELDS, $XPost); 
	$result = curl_exec($ch); 
	echo $result; 
?>
yukardaki kodda gönderdiğim zaman
http://www.hasanyasar.com/dnm/read.php nasıl bir kod yazmalıyım ki gönderdiğim XML'i okuyabilsin?..