Copié y pegué todo el código en mi editor de scripts y me tira error en muchas lineas, lo raro es que en esas lineas no hay error, lo que hice fue borrar todos los espacios en blanco y me fué cambiando y al final me quedó bien :S
Revisa, no estoy seguro pero quizás y sea la codificación de los archivos que te está trayendo problemas. quizás el paso de un sistema de archivo a otro te lo corrompió digo xD!
Saludos.
Copio y pego el código que a mi no me da error
Código PHP:
Ver original<?php
$_SESSION['activo'] = 'index';
require_once("funciones/avanzadasBD.php");
$noticias = traer_noticias(4);
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
* * <head>
* * * * <?php include_once "comun/head.php"; ?>
* * </head>
* * <body>
* * * * <div id="web">
* * * * * * <?php include_once "comun/cabecera.php"; ?>
* * * * * * <div id="menu">
* * * * * * * * <?php include_once "comun/menu.php"; ?>
* * * * * * </div>
* * * * * * <div id="pagina">
* * * * * * * * <div id="borde">
* * * * * * * * * * <div id="contenido">
* * * * * * * * * * * * <!-- Showcase -->
* * * * * * * * * * * * <div id="showcase" class="showcase">* * * * * * * * * * * * * *
* * * * * * * * * * * * * * <?php
foreach($noticias as $fila){
?>
* * * * * * * * * * * * * * * * * * <div class="showcase-slide">
* * * * * * * * * * * * * * * * * * * * <div class="showcase-content">
* * * * * * * * * * * * * * * * * * * * * * <img src="<?php echo $fila[1]; ?>"/>
* * * * * * * * * * * * * * * * * * * * </div>
* * * * * * * * * * * * * * * * * * * * <div class="showcase-caption">
* * * * * * * * * * * * * * * * * * * * * * <b><?php echo $fila[2]; ?></b><br/>
* * * * * * * * * * * * * * * * * * * * * * <?php echo $fila[3]; ?>
* * * * * * * * * * * * * * * * * * * * </div>
* * * * * * * * * * * * * * * * * * </div>
* * * * * * * * * * * * * * * * <?php } ?>
* * * * * * * * * * * * </div>
* * * * * * * * * * * * <!-- Showcase --> * * * * * * * * * * * * * * * * *
* * * * * * * * * * * * <!-- Noticias -->
* * * * * * * * * * * * <div id="noticias_index">
* * * * * * * * * * * * <?php
$cont = 1;
foreach ($noticias as $fila) {
if (($cont%2)==0)
$class = 'nt_par';
else
$class = 'nt_impar';
?>
* * * * * * * * * * * * * * * * <div id="noticia_index" class="<?php echo $class; ?>">
* * * * * * * * * * * * * * * * * * <div id="nt_img"><img src="<?php echo $fila[1]; ?>" style="width:134px; height:90px;"></div>
* * * * * * * * * * * * * * * * * * <div id="nt_fec">
<?php echo date_format(date_create($fila[5]), 'd-m-Y'); ?></div>
* * * * * * * * * * * * * * * * * * <div id="nt_tit"><?php echo $fila[2]; ?></div>
* * * * * * * * * * * * * * * * * * <div id="nt_res"><?php echo $fila[3]; ?></div>
* * * * * * * * * * * * * * * * </div>
* * * * * * * * * * * * * * <?php $cont++; } ?>
* * * * * * * * * * * * </div>
* * * * * * * * * * * * <!-- Noticias -->
* * * * * * * * * * </div>
* * * * * * * * * * <div id="lateral">
* * * * * * * * * * * * <?php include_once "comun/lateral.php"; ?>
* * * * * * * * * * </div>
* * * * * * * * </div>
* * * * * * </div>
* * * * * * <div id="pie"></div>
* * * * </div>
* * </body>
</html>
EDIT: OMG, ya te diste cuenta como me cambio todos los espacios en blanco por asteriscos en cambio los que cambié yo los dejó bien :S???