Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can i add Pagination bing php Search engine

I am not able to create a pagination script (Ex: Page 1, 2, 3, 4 ...) from the BING API.

Although I tried all ways, most times I can't.

If someone can help me I am grateful!

<pre>
<?php
/* 
Using Bing API with SimpleXML and Bing API PHP


*/
ini_set('memory_limit','128M');
error_reporting(~E_NOTICE);
// Include the Bing API PHP Library
require 'library/BingAPI.php';

// Simply start the class with your AppID argumented
$search = new BingAPI('');

// Taken out of php.net
function stripslashes_deep($value)
{
    $value = is_array($value) ?
                array_map('stripslashes_deep', $value) :
                stripslashes($value);

    return $value;
}

$_GET = array_map('stripslashes_deep',$_GET);

if(isset($_GET['searchTerm']) && !empty($_GET['searchTerm'])) {


    // Build your query easily
    $searchWeb = (isset($_GET['searchTerm'])) ? stripslashes(urlencode($_GET['searchTerm'])) : '';
    // TODO: MAKE THE SWITCH CASE FOR SOURCES TYPE

    switch($_GET['SourceType']) {

        case 'Images':
            $appendSource = 'Image';
            $optionSource = array(
                            'Image.Count' => '20',
                            'Image.Offset' => '0',
                            'Image.Filters' => 'Size:Large',
                            'Options' => 'EnableHighlighting');
        break;

        case 'Web':
            $appendSource = 'Web';
            $optionSource = array(
                            'Web.Count' => '20',
                            'Web.Offset' => '0',
                            'Adult' => 'Moderate',
                            'Options' => 'EnableHighlighting');
        break;

        case 'News':
            $appendSource = 'News';
            $optionSource = array(
                            'News.Offset' => '0',
                            'News.SortBy' => 'Relevance');
        break;

        default:
            $appendSource = 'Web';
            $optionSource = array(
                           'Web.Count' => '20',
                           'Web.Offset' => '0',
                           'Adult' => 'Moderate',
                           'Options' => 'EnableHighlighting');
        break;
    }

    // Gotta love switches..

    $search->query($searchWeb)
           ->setSources($appendSource) # To use multiple resources simply do ->setSources('Web+Image') , it must match the source type bling.com provides
           ->setFormat('xml')
           ->setOptions($optionSource);

    // Contains the search
    $results = $search->getResults();

    // Start our SimpleXML class
    $xml = new SimpleXMLElement($results);


    // Every structure of bing.com is pratically similar, so its safe to say you can use this assign
    $QueriedTerm = $xml->Query->SearchTerms;


    /**
     * Getting the sources from WEB
     */
    $WebResultSet = $xml->children('http://schemas.microsoft.com/LiveSearch/2008/04/XML/web');
    // Demonstration on how to count the results
    $TotalWebResults = (isset($_GET['SourceType']) == 'Web' || empty($_GET['SourceType'])) ? count($WebResultSet->Web->Results->WebResult) : '';


    /**
     * Getting the sources from Image
     */
    $ImageResultSet =  $xml->children('http://schemas.microsoft.com/LiveSearch/2008/04/XML/multimedia');
    $TotalImageResults = (isset($_GET['SourceType']) && $_GET['SourceType'] == 'Images') ? count($ImageResultSet->Image->Results->ImageResult) : '';

    /**
     * Getting the sources from News
     */
    $NewsResultSet =  $xml->children('http://schemas.microsoft.com/LiveSearch/2008/04/XML/news');
    $TotalNewsResults = (isset($_GET['SourceType']) && $_GET['SourceType'] == 'News') ? count($NewsResultSet->News->Results->NewsResult) : '';
}


/* Appends and encode the search term to allow easier search using the links */
$appendSearch = (isset($_GET['searchTerm'])) ? '&amp;searchTerm='.stripslashes(urlencode($_GET['searchTerm'])) : '';

/* For the form action
 *
 */
    $formValue = (isset($_GET['searchTerm'])) ? htmlspecialchars($_GET['searchTerm'], ENT_QUOTES) : '';
    $formAction = (isset($_GET['SourceType'])) ? htmlspecialchars($_GET['SourceType']) : 'Web';
?>
<html>
<head>
<title>Project Moccha! - Fetch me my moccha!</title>
<meta content="text/html; charset=utf-8" http-equiv="content-type" />
<link href="styles/rockyblue.css" rel="stylesheet" />
</head>
<body>
<br />
If this have been a great use to you, please consider a little donation: <form action="https://www.paypal.com/cgi-bin/webscr" method="post">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="5950278">
<input type="image" src="https://www.paypal.com/en_US/i/btn/btn_donate_SM.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!">
<img alt="" border="0" src="https://www.paypal.com/en_US/i/scr/pixel.gif" width="1" height="1">
</form>
Else, best wishes and thanks for using BING API PHP.</p>

<form action="index.php" method="get">
<a href="index.php?SourceType=Web<?php echo $appendSearch; ?>">Web</a> | <a href="index.php?SourceType=Images<?php echo $appendSearch; ?>">Images</a> | <a href="index.php?SourceType=News<?php echo $appendSearch ?>">News</a>
<input type="text" value="<?php echo $formValue; ?>" name="searchTerm" />
<input type="hidden" value="<?php echo $formAction; ?>" name="SourceType" />
<input type="submit" name="fetch" value="Search" />

</form>
<?php


// Yet another switch, but hey they are pretty useful! better than building an if/else empire
switch($_GET['SourceType']) {
    case 'Web':
        $DisplayNum =  (isset($_GET['searchTerm'])) ? $TotalWebResults.' <strong>Result Sets</strong> |' : '';
        $inTotal = $WebResultSet->Web->Total;
    break;
    case 'Images':
        $DisplayNum =  (isset($_GET['searchTerm'])) ? $TotalImageResults.' <strong>Result Sets</strong> |' : '';
        $inTotal = $ImageResultSet->Image->Total;
    break;
    case 'News':
        $DisplayNum = (isset($_GET['searchTerm'])) ? $TotalNewsResults.' <strong>Result Sets</strong> |' : '';
         $inTotal = $NewsResultSet->News->Total;
    break;
}


if(isset($_GET['searchTerm']) && !empty($_GET['searchTerm'])) {
    echo $DisplayNum;
    echo " <strong>Total Results</strong>: ";
    echo number_format($inTotal);
    echo " | <strong>Searching for</strong>: ";
    echo htmlspecialchars($QueriedTerm, ENT_QUOTES);
}
if ($num > $display) { 
$num_pages = ceil ($num/$display); 
if ($num_pages > 5) { 
$num_pages = 5; 
} 
} elseif ($num > 0) { 
$num_pages = 1; 
}

?>
<div class="results">
    <?php
    // The Web
    if(isset($_GET['searchTerm']) && $_GET['SourceType'] == 'Web' || empty($_GET['SourceType'])) {
    $i = 0;
    echo "<ol>";
    while($TotalWebResults >= $i) {
        // Force the while to stop
        if($TotalWebResults == $i) {
            break; // It something that happened to me while I was doing this
            /* Somehow, while we enter the loop, either live api hangs in the connection
             * therefore, we'll force it out of the loop or it will continue even knowing its finished
             */
        }

        // This is double checking we don't step on a landmine while searching, along with the <sub>break;</sub> 
        if(is_object($WebResultSet->Web->Results->WebResult[$i])) {
        // Re-assures us that the object is really an object;

        /* BING gives you a raw title and description, run a htmlspecialchars to convert special characters */
        $Title = htmlentities($WebResultSet->Web->Results->WebResult[$i]->Title, ENT_QUOTES, 'UTF-8', true);
        // I don't want my titles with characters
        $Title = $search->resetHighlight($Title);
        $Description =  $WebResultSet->Web->Results->WebResult[$i]->Description;


        $Description = $search->setHighlightFormat(
                                "<span class='hl'>",
                                "</span>",
                                $WebResultSet->Web->Results->WebResult[$i]->Description
                            );



        if(!empty($Title)) {
        echo "<li><div class='result'>".PHP_EOL;
        echo "\t\t<div class='title'><a href='{$WebResultSet->Web->Results->WebResult[$i]->Url}'".
             " title='{$Title}'>".$Title."</a></h4>".PHP_EOL;
        echo "\t\t<div class='desc'>{$Description}</div>".PHP_EOL;
        echo "</div></li>".PHP_EOL;
        $i++;


     }
        }
    }
    echo "</ol>";
    }

    // The Images
    if(isset($_GET['searchTerm']) && $_GET['SourceType'] == 'Images') {
    $i = 0;

    while($TotalImageResults >= $i) {
        if($TotalImageResults == $i) {
            break; // It something that happened to me while I was doing this
            /* Somehow, while we enter the loop, either live api hangs in the connection
             * therefore, we'll force it out of the loop or it will continue even knowing its finished
             */
        }
        $ThumbURL = $ImageResultSet->Image->Results->ImageResult[$i]->Thumbnail[0]->Url;
        $ThumbWidth = $ImageResultSet->Image->Results->ImageResult[$i]->Thumbnail[0]->Width;
        $ThumbHeight = $ImageResultSet->Image->Results->ImageResult[$i]->Thumbnail[0]->Height;
        $ThumbSite = $ImageResultSet->Image->Results->ImageResult[$i]->Url;
        $MediaUrl = $ImageResultSet->Image->Results->ImageResult[$i]->MediaUrl;
        // Force the while to stop
        if($i % 5 == 0) {
            echo "<div class='resultblock'>".PHP_EOL;
        }
        echo "\t<div class='resultimg'>".PHP_EOL;
        echo "\t\t<a href='$MediaUrl'><img src='{$ThumbURL}' width='$ThumbWidth' height='$ThumbHeight' /></a>".PHP_EOL;
        echo "<div class='sources'><a href='$ThumbSite'>Main Sources</a></div>";
        echo "\t</div>".PHP_EOL;
        $i++;
        if($i % 5 == 0) {
            echo "</div> <div class='clear'></div>";
        }
    }
    }

    if(isset($_GET['searchTerm']) && $_GET['SourceType'] == 'News') {
    $i = 0;
    while($TotalNewsResults >= $i) {
        if($TotalNewsResults == $i) {
            break; 
        }
        $Title = htmlspecialchars($NewsResultSet->News->Results->NewsResult[$i]->Title, ENT_QUOTES);
        $Snippet = htmlspecialchars($NewsResultSet->News->Results->NewsResult[$i]->Snippet, ENT_QUOTES);
        $Sources = htmlspecialchars($NewsResultSet->News->Results->NewsResult[$i]->Source, ENT_QUOTES);
        $NewsURL = htmlspecialchars($NewsResultSet->News->Results->NewsResult[$i]->Url, ENT_QUOTES);
        echo "<div class='newsresult'>".PHP_EOL;
        echo "\t\t<div class='title'><a href='$NewsURL' title='$Title'>$Title</a></div>".PHP_EOL;
        echo "\t\t<div class'desc'>$Snippet</div>".PHP_EOL;
        echo "\t\t<div class='cite'>Sources from: $Sources  </div>".PHP_EOL;
        echo "</div>".PHP_EOL;
    $i++;

    }
    }


    ?>
</div>
</body>
</html>
</pre>
share|improve this question
3  
Sorry, but we don't read walls of text/code. Break that down into a SMALL simple example. – Marc B Jul 18 '12 at 5:17
1  
Please make some small parts of the code so it is easy to understand – Jalpesh Jul 18 '12 at 5:19

closed as not a real question by Marc B, Jakub, j0k, sachleen, Graviton Jul 23 '12 at 5:52

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

Check this..

$i=0;
$l=1;
$start=0;
$limit=5;
echo "<p align='center'>";
for($i=0;$i < 20;$i=$i+$limit)
{
  if($i <> $start)
  {
    echo "<a href='yourfile.php?start=$i&limit=$limit'><font face='Verdana'  size='2'><b>&nbsp;$l&nbsp;</b></font></a> ";
  }
  else
  {
    echo "<font face='Verdana' size='4' color=#2E9AFE ><b>&nbsp;$l&nbsp;</b></font>";
  }        
$l=$l+1;
}
echo "</p>";

$count is the total number of records. $limit is the number of rows to be displayed in one page

share|improve this answer
where i put this code? in the bottom? – Muhammad Salman Jul 18 '12 at 5:28
You can place it anywhere..top/bottom is mostly recommended ;) – Bhuvan Rikka 웃 Jul 18 '12 at 5:32
not working dear i put in the end – Muhammad Salman Jul 18 '12 at 5:37
echo "</div>".PHP_EOL; $i++; } } $i=0; $l=1; echo "<p align='center'>"; for($i=0;$i < $count;$i=$i+$limit) { if($i <> $start) { echo "<a href='index.php?start=$i&limit=$limit'><font face='Verdana' size='2'><b>&nbsp;$l&nbsp;</b></font></a> "; } else { echo "<font face='Verdana' size='4' color=#2E9AFE ><b>&nbsp;$l&nbsp;</b></font>"; } $l=$l+1; } echo "</p>"; ?> – Muhammad Salman Jul 18 '12 at 5:38
you can't directly place it without editing..That's just a prototype. You have to declare $count and $limit . – Bhuvan Rikka 웃 Jul 18 '12 at 5:39
show 18 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.