ruạṛ
<?php /** * Output a number of randomly selected and ordered testimonials * @version 0.10 * @author Robert Urquhart <programmer@activatedesign.co.nz> * @package WEP-CMS */ /** * @var int $tnum number to display * @var string $testimonial_list generate a string because we don't know whether this is going to be output or appended to $content */ $tnum = 2; $testimonial_list = '<div class="testimonials"> '; $testimonial = mysql_query("select * from testimonials where active = '1' order by RAND() limit $tnum") or die(mysql_error()); if($testimonial && mysql_num_rows($testimonial)>0) { $t = new testimonial(); while($row=mysql_fetch_assoc($testimonial)) { $t->load_from_data($row); include 'section_testimonial.php'; //appends to $testimonial_list } } $testimonial_list .= ' <a class="more" href="'.select_one('page_data','path','page_type','testimonials').'">View All</a> </div><!-- end testimonials --> '; ?>
cải xoăn