I want to save the value of a select to a php variable, and then display it in the html.
I tried something like:
function totalEspumas(){
$banco = abrirBanco();
$quantidade_pedidos = "SELECT SUM(quantidade) from pedidos";
$resultado = $banco->query($quantidade_pedidos);
$banco->close();
$pedidos = '';
while($row = mysqli_fetch_array($resultado)){
$pedidos[] = $row;
}
return $pedidos;
}
The result of the query is 23. Html:
<?php
$totalespuma = totalEspumas();
?>
<?php echo $totalespuma ?>
When I try to show the value of the variable, I get:
Catchable fatal error: Object of class mysqli_result could not be converted to string