Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/09/2005, 00:23
apicito2003
 
Fecha de Ingreso: mayo-2005
Mensajes: 26
Antigüedad: 18 años, 10 meses
Puntos: 0
Cita:
Iniciado por claudiovega
El problema debe estar en algun codigo del lado del cliente, algo mal en javascript por ejemplo, que no permite visualizar todo el contenido.
Como ves no meto ningún java script. Este es el Php que mete el contenido en un frame de la página.

Código:
<!doctype html public "-//W3C//DTD HTML 4.0 //Es">
<html>
<head>
  <title>CAB</title>
  <link type="text/css" rel="stylesheet" href="estilos.css">
</head>
<body>
<?php
  include("funcion.php");
  $sql='select *  from EXPTRA where EXPTRA_EXPTE='.$expte;
  $sql.=' order by EXPTRA_FECHA desc';
  $cursor=busca($sql);
  echo '<div id="cor-derech">';
  echo '<div id="seccion">NOVAS</div><br>';
  
  for ($fila=0; $fila<count($cursor)-1;$fila++) {
    echo '<a class="t2" align="left" target="corcen" href="central.php?op=texto&tipo='.$tipo.'&part='.$part.'&id='.$cursor[$fila][0].'">'.strftime("%d-%b-%Y",strtotime($cursor[$fila][1])).'</a><br>';
    echo '<a class="t1" target="corcen" href="central.php?op=texto&tipo='.$tipo.'&part='.$part.'&id='.$cursor[$fila][0].'">'.ucfirst(strtolower($cursor[$fila][2])).'</a><br>';
  }

  echo '</div>';
?>
</body>
</html>