teşekkür ederim. limit nasıl koyabiliriz acaba ?
$objKeywords = "r10.net";
$objMax = 5;
$objURL = "http://gdata.youtube.com/feeds/videos?q=$objKeywords&max-results=$objMax";
$objXml = simplexml_load_file($objURL);
print_r($objXml);
foreach ($objXml->entry as $objVideo) {
$objTitle = $objVideo->title;
echo $objTitle."<hr>";
}