Table PRODUTOS
- id
- productname
- product category
- valordoproduto
Table CATEGORIAS
- id
- classname
In my form I show the name of the category but register in the database in the table PRODUTOS
the id of the same one that I imagine is the right thing to do.
I have to show the product and its category in a view. So I do the query and get as a category the number 1
in the product view through the statement:
<?php while($PA = $BuscaProdutosAtivos->fetch()){ ?>
Nome do produto: <?=$PA['prod_nome']?>
Categoria do produto: <?=$PA['prod_categoria']?>
Valor do produto: <?=$PA['prod_valor']?>
<?php } ?>
How do I search the table CATEGORIA
o nomedacategoria
to insert in the view since I have ID
of the category in question?