include('includes/init.php');
$title = "Quality Furniture with Free Delivery - Some of our happy customers - Furniture2Go";
include('topinc.php');
?>
Testimonials
Just some of our happy customers:
$nw_clause = $aff == 'nw' ? ' where show_on_nw = 1' : '';
$test_sql = "select * from testimonial_content $nw_clause order by dateentered desc";
@$test_rs = mysql_query($test_sql);
$count = 0;
while($test = mysql_fetch_array($test_rs,MYSQL_ASSOC)){
$count++;
$datelabel = $test[datelabel];
$text = $test[text];
$name = $test[name];
$city = $test[city];
echo "
";
if(trim($datelabel)!=""){
echo "$datelabel:";
}
echo "
$text
$name";
if($_SESSION['aff']!="sf" and $_SESSION['aff']!="nw"){
echo " from $city";
}
echo "
";
if($short!=1){
if(($count % 10)==0) echo "Return to home page
";
}
}
include('bottominc.php')
?>