I want to add videos of my favourite personality in my website. So basically i want to do two tasks:
- Get videos from youtube of that personality using You tube API or something.
For this I tried the following
$url = "http://gdata.youtube.com/feeds/api/videos?
q=personalityname
&start-index=0
&max-results=10
&v=2";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$body = curl_exec($ch);
print_r($body);
but i didn't got my results. Can any one help with my first task
