Esto es un div
include('db.php');
$statement = $db->prepare("SELECT `nombre` FROM `productos` WHERE `categoria` = ?");
$cat = 'FACIALES';
$statement->bind_param('s', $cat);
$statement->execute();
$statement->bind_result($nombre);
while($statement->fetch()){
echo "hola que tal";
echo "$nombre
";
}
?>
aca termina mi div