I've tried various kinds to be able to resolve the problem for me but I did not get anything, in fact I've been using the services of Fiverr but my problem was not finished well,
I have a code youtube rss feed
That result is 10 video youtube
can anyone help me to get that Title Video so when we try like this
example like this
we search 'funny video' and the result is
1. funny video bla..bla 1
2. funny video bla..bla 2
3. funny video bla..bla 3
4. funny video bla..bla 4
and more
I need When we click 'funny video bla..bla 3' will go to my search page as 'funny video bla..bla 3'
Please help me
I try this 3 month but not change anything

I have a code youtube rss feed
PHP:
$search = 'funny video';//Search Term
$file = file_get_contents('hxxp://gdata.youtube.ccom/feeds/base/videos?q='.$search.'&client=ytapi-youtube-search&v=2'); // please change xx to tt and edit ccom to normaly
$rss = new SimpleXMLElement($file);
$limit = '10'; //Videos Limit to display
$ctr = '0';
foreach($rss->entry as $idx => $key)
{
if($ctr == $limit)
{
break;
}
else{
echo '<div id="video">';
echo '<p class="title">'.$key->title.'</p>';
echo '<p class="video">'.$key->content.'</p>';
echo '</div>';
$ctr++;
}
}
That result is 10 video youtube
can anyone help me to get that Title Video so when we try like this
example like this
we search 'funny video' and the result is
1. funny video bla..bla 1
2. funny video bla..bla 2
3. funny video bla..bla 3
4. funny video bla..bla 4
and more
I need When we click 'funny video bla..bla 3' will go to my search page as 'funny video bla..bla 3'
Please help me
I try this 3 month but not change anything