0
I have a Mysql table where product type is stored. I would like to see the percentage of each product registered in the table. I did so:
// Verifico o total de produtos cadastrados
$sqlTotal = mysqli_query($conexao,"SELECT * FROM produtos");
$totalProdutos = mysqli_num_rows($sqlTotal);
// Verifico o total do tipo de produtos
$sqlTipo = mysqli_query($conexao,"SELECT * FROM produtos WHERE TipoProduto = 'Arroz'");
$totalTipo = mysqli_num_rows($sqlTipo);
// Faço o cálculo
$porcentagem = ($totalProdutos * 100) / $totalTipo;
The correct form is:
$porcentagem = ($totalTipo * 100) / $totalProdutos;
I’m a little insecure about that code.
Right Diego. Actually I needed the rule of three. I found it. To calculate just do it that way I edited.
– user24136