Example #1
0
<?php

require "queryYT.php";
if (isset($_GET['query'])) {
    searchAndPrint($_GET['query']);
} else {
    echo "error";
}
function searchAndPrint($searchTerms = 'sesame street')
{
    $yt = new Zend_Gdata_YouTube();
    $yt->setMajorProtocolVersion(2);
    $query = $yt->newVideoQuery();
    $query->setOrderBy('relevance');
    $query->setSafeSearch('moderate');
    $query->setVideoQuery($searchTerms);
    $query->setParam('caption', 'true');
    $query->setParam('start-index', $_GET['start_index']);
    $query->setParam('max-results', 8);
    //$query->setParam('max-results','2');
    // Note that we need to pass the version number to the query URL function
    // to ensure backward compatibility with version 1 of the API.
    //echo $query->getQueryUrl(2);
    //$videoFeed = $yt->getVideoFeed("http://gdata.youtube.com/feeds/api/videos?orderby=relevance&safeSearch=moderate&q=sesame+street");
    $videoFeed = $yt->getVideoFeed($query->getQueryUrl(2));
    $links = $videoFeed->getLink();
    $suggestFlag = null;
    foreach ($links as $link) {
        if ($link->getRel() == 'http://schemas.google.com/g/2006#spellcorrection') {
            $videoFeed = $yt->getVideoFeed($link->getHref());
            //print_r($link->getTitle());
function test()
{
    require_once 'Zend/Loader.php';
    // the Zend dir must be in your include_path
    Zend_Loader::loadClass('Zend_Gdata_YouTube');
    $yt = new Zend_Gdata_YouTube();
    //$videoEntry = $yt->getVideoEntry('the0KZLEacs');
    //printVideoEntry($videoEntry);
    //echo "Hello";
    //searchAndPrint('innovation');
    searchAndPrint('innovation');
}
function displayvideo()
{
    global $lifestylelid;
    global $searchTerms;
    ?>
<div id="videos">
   <h3 class="hidden">Videos</h3>

<?php 
    youtubekeywords($lifestylelid);
    searchAndPrint($searchTerms);
    ?>
  
  
 </div>  <!-- closes video list -->

<?php 
}
</div>  <!-- closes contenttab-->

<div class="contenttabright">  

<div class="photocol">
<?php 
    flickrfour($lifestylelid);
    echo $imagedisplay;
    ?>
</div>  <!-- closes photo list -->

<div class="videocol">
<img src="/lifestylelinking/images/video.gif"><br />
<?php 
    youtubekeywords($lifestylelid);
    searchAndPrint($searchTerms);
    ?>
</div>  <!-- closes video list -->


<div class="contenttabpeer">
<br /><br /><br />

<div class="peergroup">

<?php 
    mostlikelifestyle($lifestylelid);
    echo $peergroup;
    ?>
</div>  <!-- closes contenttabright-->