Quote:
Originally Posted by am2003
One more soft question. What is the difference between $product.product and $product.producttitle? Are they the same? Maybe they have same values, using different queries.
Cheers
|
$product.product is the value of product field in products table. In func.product.php we find
Code:
$product["producttitle"] = $product['product'];
which make $product.producttitle same as $product.product
What's the reason? I don't know maybe to make it more obvious that this is the product name