I needed help because I wanted to send the data from my database to the webpage
BASE DATA FIELDS: Id_Produto
, NomeProduto
, PrecoProduto
, DescricaoProduto
, QuantidadeProduto
, CategoriaProduto
-
TABLE NAME: produtos
The page I'm creating is in php to be able to access the information in the database.
But I can not make the code
I'm using '
mysqli_connect('localhost', 'root', '', 'pap') or die (mysqli_error ());
$strSQL = "SELECT * FROM produtos";
$rs = mysqli_query($strSQL);
while($row = mysqli_fetch_array($rs)) {
echo $row['NomeProduto'] . "<br />";
echo $row['DescricaoProduto'] . "<br />";
}
// Encerra a conexão
mysqli_close(); ?>
'