View Single Post
  #39  
Old 03-17-2005, 07:16 PM
 
moza moza is offline
 

Member
  
Join Date: Apr 2003
Location: Australia
Posts: 22
 

Default

Thanks for prompt respond,

Quote:
Originally Posted by hooter
Check for a missing close bracket } and/or one too many

This is the code that I am using:

Code:
<?php /* Search Engine Enhancement by Fernando Borcel. MascotasMexico.com */ require "./auth.php"; $qry = "SELECT * FROM " . $sql_tbl["products"] . " where forsale='Y' order by add_date DESC"; $result = db_query($qry); $products = array(); while ($result_row = db_fetch_array($result)) { б═ $products[] = $result_row; } $smarty->assign("products",$products); $smarty->display("SEO_listing.tpl", $smarty); ?>
__________________
x-cart 3.5
Reply With Quote