16/10/2012, 20:42
|
| | Fecha de Ingreso: octubre-2012
Mensajes: 1
Antigüedad: 12 años, 1 mes Puntos: 0 | |
Consulta, arrays php en tablas html Hola amigos, me gustaria hacerles la siguiente consulta, tengo el siguiente array en php, escribo la tabla en html, pero tengo problemas al representar el indice del array osea la cabecera, me gustaria que solo saliera una fila, y no todas las demas, pienso que es un problema con el recorrido del array
<?php
$agenda=array(array('fecha'=>'12-03-12','h_inicio'=>'09:40am','h_fin'=>'10:30am','acti vidad'=>'clase'),
array('fecha'=>'13-03-12','h_inicio'=>'10:40a','h_fin'=>'11:30am','activ idad'=>'jugar'),
array('fecha'=>'14-03-12','h_inicio'=>'08:40am','h_fin'=>'9:30am','activ idad'=>'clase'),
array('fecha'=>'15-03-12','h_inicio'=>'06:40am','h_fin'=>'8:30am','activ idad'=>'hablar por tel'),
array('fecha'=>'16-03-12','h_inicio'=>'11:40am','h_fin'=>'12:30am','acti vidad'=>'clase'));
?>
<!doctype html>
<html>
<head>
<title> renderizado con echo </title>
</head>
<body>
<table align="center" border= "1" width="500">
<thead>
<tr>
<th bgcolor="yellow" colspan="4">agenda</th>
</tr>
<?php
foreach($agenda as $indice=> $valor){
echo "<tr>\n";
foreach($valor as $ind1=>$val1){
echo'<td>'.$ind1.'</td>';
}
'</tr>';
}
?>
</thead>
<?php
foreach($agenda as $indice=> $valor){
echo "<tr>\n";
foreach($valor as $ind1=>$val1){
echo'<td>'.$val1.'</td>';
}
'</tr>';
}
?>
</table>
</body>
</html>
Ese codigo va a mostrar la tabla, pero adiciona todas las filas del indice del recorrido en la tabla, yo solo quiero uno |