Welcome Guest, Not a member yet? Register   Sign In
SimpleXML to return a few items at a time
#1

[eluser]ModernM[/eluser]
I am using simple XML to grab the data from a cURL response in XML. Now I can get everything back using this

Code:
<?php $Items = new SimpleXMLElement($res);?>
    
    
      <div class="row-fluid">
        <div class="span10">
         <ul class="thumbnails">
          &lt;?php foreach ($Items->SearchResults->Items->Item as $ProductID){
   echo '<li class="span3">
             <div class="thumbnail"> <img src="'.$ProductID-&gt;ThumbPicLink.'" alt="'.$ProductID-&gt;PrName.'">
      <h5>'.$ProductID->PrName.'</h5>
      <p>Short Description</p>
      <h6>Item Number:'.$ProductID->ProductID.'</h6>
            </div>
          </li>';
    }?&gt;
        </ul>
        </div>

How do I express this so it returns 10 items at a time, what I am trying to do is paginate the data instead of returning 10000 items at once.

Thanks


Messages In This Thread
SimpleXML to return a few items at a time - by El Forum - 06-29-2012, 07:35 PM
SimpleXML to return a few items at a time - by El Forum - 06-29-2012, 08:23 PM
SimpleXML to return a few items at a time - by El Forum - 06-29-2012, 08:56 PM
SimpleXML to return a few items at a time - by El Forum - 06-30-2012, 05:51 AM
SimpleXML to return a few items at a time - by El Forum - 07-03-2012, 05:25 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 02:21 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 02:52 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 03:58 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 05:02 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 05:04 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 07:32 PM
SimpleXML to return a few items at a time - by El Forum - 07-07-2012, 07:38 PM
SimpleXML to return a few items at a time - by El Forum - 07-12-2012, 02:32 PM
SimpleXML to return a few items at a time - by El Forum - 07-12-2012, 08:33 PM
SimpleXML to return a few items at a time - by El Forum - 12-08-2012, 03:22 PM
SimpleXML to return a few items at a time - by El Forum - 12-09-2012, 03:24 PM



Theme © iAndrew 2016 - Forum software by © MyBB