lijst met producten:
query("select id, image, price, name from webs.product");
while ($product = $res->fetch_object()) product_template($product);
?>
image ? "/img/product/$product->id-thumb.jpg" : "/img/placeholder.png";
echo <<<"EOF"
$product->price
$product->name
EOF;
}
?>