I'm doing a virtual store, but I'm not able to display the products of the subcategory on the page.
The products of the category go normal, but the products of the subcategory do not.
Follow the code:
<?php
$categoria = $_GET['categoria'];
$categoria_sub = $_GET['categoria_sub'];
$sql = mysql_query("SELECT * FROM produto
INNER JOIN categoria
ON produto.categoria = categoria.categoria_id
INNER JOIN categoria_sub
ON produto.categoria_sub = categoria_sub.sub_cat_id
WHERE produto.categoria = '".$categoria."'
AND produto.categoria_sub = '".$categoria_sub."'
ORDER BY RAND()");
if (mysql_num_rows($sql)== true) {
while ($ln = mysql_fetch_assoc($sql)) {
?>
Tables:
CATEGORY
SUBCATEGORY