Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/09/2011, 17:29
peluca13
 
Fecha de Ingreso: septiembre-2011
Mensajes: 2
Antigüedad: 12 años, 6 meses
Puntos: 0
Respuesta: mostar tabla en texbox

impecable man muchas gracias voy a setear el overflow como scroll y el doy un tamaño definido al div .
muchas grax no se me habia ocurrido esa solucion
ah los datos los muestro asi

<table width="243" height="226" border="1">
<thead>
<th>cabecera1</th>
<th>cabecera2</th>
<th>cabecera3</th>
<th>cabecera4</th>
<th>cabecera5</th>
<th>cabecera6</th>
<tr><th></th></tr>

</thead>

<tbody>
<?php


$consultar = mysql_query("SELECT * FROM basededatos");

if($consultar)
{
while( $filas= mysql_fetch_assoc($consultar))// da cada fila de la tabla
{
?>
<tr>
<td><?php echo $filas ["col1"]?> </td>
<td><?php echo $filas ["col2"]?> </td>
<td><?php echo $filas ["col3"]?> </td>
<td><?php echo $filas ["col4"]?> </td>
<td><?php echo $filas ["col5"]?> </td>
<td><?php echo $filas ["col6"]?> </td>

</tr>
<?php
}
}



?>
</tbody>
</table>