ruạṛ
<?php $featured = mysql_query("select * from products where featured = '1' and active = '1' order by RAND()"); if($featured && mysql_num_rows($featured)>0){ /** * @var object $f * @var int $i */ $i = 1; $content .= '<div class="products featured"> <div id="slides"> '; while($r = mysql_fetch_assoc($featured)) { $p = new product; $p->load_from_data($r); $image = '/resources/images/product/'.$p->prod_id .'/feature.jpg'; if(!file_exists(DOC_ROOT.$image)){ continue; } //else $content .= ($i==1) ? '<div><ul class="nav">' : ''; include 'section_product_summary.php'; $i++; if($i==4) { $content .= '</ul></div>'; $i=1; //reset counter } } $content .= ($i!=1) ? '</div>' : ''; //catch possible partial slide $content .= ' </div> </div> <!-- end featured --> <script type="text/javascript"> $(document).ready(function(){ $(".featured #slides").orbit( { "animation": "horizontal-push", "animationSpeed": 800, "advanceSpeed" : 6000, "bullets": true } );}); </script> '; } ?>
cải xoăn