Hi Gang,
I am using phpshop for my cart and I am hoping for alittle help from the group. When I browse the category the records show up each on there own row. What I would like to do is instead of that is have each record fit into it's own cell (<TD>) then the next cell would be the next record.
This is the code to create the row
<?php
$db->query($list);
while ($db->next_record()) {
?>
<TR VALIGN=TOP>
<?php
// Set the flypage for this product based on the category.
// If no flypage is set then use the default as set in phpshop.cfg.
$flypage = $ps_product->get_flypage($db->f("product_id"));
?>
<TD width="18%" nowrap><?php
$ps_product->show_image($db->f("product_thumb_image"));
?><br><A HREF=<?php $sess->purl(URL . "?page=$flypage&product_id=" .
$db->f("product_id") . "&category_id=" . $db->f("category_id")); ?>
><?php $db->p("product_name"); ?></A><br><?php $db->p("product_s_desc"); ?></TD>
Any help would be greatly appreciated...
Sean C.
sean@surfgraphics.com