Show Latest Testimonals at Zen-Cart Homepage
January 13th, 2012 — adminSometimes we like to show several latest customers testimonals at zen-cart based shopping cart homepage. How to do then? Here are my method, let me share the code with you.
Go go to includes/modules, and open left_column.php, add the following code: <code><? $sql = “select * from pres_testimonials where status = 1 order by id DESC limit 3″; $result=mysql_query($sql); while($row=mysql_fetch_array($result)) { echo “<strong>”.$row[name].”</strong>”; echo $row[detail]; Continue reading “Show Latest Testimonals at Zen-Cart Homepage”