:
= $row_ev["titulo"] ?>
if ($row_ev["fotografia"] != "") { ?> } ?> = $row_ev["cuerpo"] ?>// Definimos el idioma por defecto, en este caso será ES (español) $idiomaActual = 'ca'; // Si se ha seleccionado un idioma se guarda una cookie con el idioma if(isset($_GET['idioma'])){ setcookie ("idioma", $_GET['idioma'], time () + 7*24*60*60); $idiomaActual = $_GET['idioma']; } elseif(isset($_COOKIE['idioma'])){ // Miramos que exista el archivo del idioma if(file_exists("traduct/".$_COOKIE['idioma'].".php")){ $idiomaActual = $_COOKIE['idioma']; } } // Incluimos el archivo del idioma seleccionado, o el archivo por defecto si no se seleccionó idioma, o si no se encuentra el archivo include "traduct/".$idiomaActual.".php"; ?> $cadenaSQL = "SELECT *, 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 AND e.id = :id ORDER BY e.fecha DESC"; $stmt = $conexionBD->prepare($cadenaSQL); $stmt->bindParam(":tipo", $_GET['tipo']); $stmt->bindParam(":idioma", $idiomaActual); $stmt->bindParam(":id", $_GET['id']); $stmt->execute(); $row_ev = $stmt->fetch(); // Establecemos el directorio de im�genes $dir_img = DIR_IMG_NOTICIES_CASTELL; $dir_img_virtual = DIR_IMG_NOTICIES_CASTELL_VIRTUAL; ?>
= $row_ev["titulo"] ?>
if ($row_ev["fotografia"] != "") { ?> } ?> = $row_ev["cuerpo"] ?>