$cadenaSQL = "SELECT *, e.id AS id_entrada, DATE_FORMAT(fecha, '%d/%m/%y') AS fecha_format FROM entradas e INNER JOIN entradas_traducciones et ON et.entrada = e.id
WHERE e.tipo = :tipo AND et.idioma = :idioma ORDER BY e.fecha DESC
LIMIT 3";
?>
$stmt = $conexionBD->prepare($cadenaSQL);
$stmt->bindParam(":idioma", $idiomaActual);
$stmt->bindParam(":tipo", $tipo_noticies_castell);
$stmt->execute();
$RS = $stmt->fetchAll();
foreach ($RS as $row_not) {
?>
=$row_not["fecha_format"] ?>
}
?>