3
« en: Jueves 28 de Septiembre de 2006, 21:22 »
Hola Tengo un problemilla quiero sacar reportes de usaurios
este reporte esta en una sola tabla
$arr_user[]= array($nombre,$num_proy, $num_bug,$name_proy,
$num_tarea , $num_servicio,$cliente,$proyecto,$actividad ,
$lun , $mar, $mie ,$juev, $vie ,$sab,$dom,$horas,$horas,$chargables,
$fecha_ini, $fecha_fin,$lunes, $martes,$miercoles,$jueves,$viernes,
$sabado,$domingo);
<table border="0" style=" width:250px; " cellpadding="2" cellspacing="2" border="1">
<tr>
<th >NOMBRE</th>
<th ># PROYECTO</th>
<th ># BUG </th>
<th > NOMBRE PROYECTO</th>
<th ># TAREA </th>
<th ># SERVICIO </th>
<th >CLIENTE</th>
<th >NOMBRE DEL PROYECTO</th>
<th >ACTIVIDAD</th>
<th style="border: 1px solid #C0C0C0;" NOWRAP>LUNES</th>
<th >MARTES</th>
<th >MIERCOLES</th>
<th >JUEVES</th>
<th >VIERNES</th>
<th >SABADO</th>
<th >DOMINGO</th>
<!--<th >TOTAL</th>-->
<th >SUBT</th>
<th >CHARGABLES</th>
</tr>
<tr>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th > </th>
<th >
<font color="<?echo $a;?>"><? echo $dates[1][1]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][2]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][3]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][4]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][5]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][6]; ?></font></th>
<th ><font color="<?echo $a;?>"><? echo $dates[1][7]; ?></font></th>
<th >SUBTOTAL</th>
<th >(Y/N)</th>
</tr>
<tr>
<?php
$TOTAL=0;
foreach ($supervisores as $g=> $arr_info)
{
$SUBTOTAL = $arr_user[10] + $arr_user[11] + $arr_user[12] +
$arr_user[13] + $arr_user[14] + $arr_user[15] + $arr_user[16];
$TOTAL += $SUBTOTAL;
?>
<td " nowrap><font color="<?echo $a; ?>"><?php echo $arr_user[0]; ?></font></td>
<td "> <font color="<?echo $a; ?>"><?php echo $arr_user[1]; ?></font></td>
<td "> <font color="<?echo $a; ?>"><?php echo $arr_user[2]; ?></font></td>
<td "> <font color="<?echo $a; ?>"><?php echo $arr_user[3]; ?></font></td>
<td ><font color="<?echo $a; ?>"><?php echo $arr_user[4]; ?></font></td>
<td "> <font color="<?echo $a; ?>"><?php echo $arr_user[5]; ?></font></td>
<td "> <font color="<?echo $a; ?>"><?php echo $arr_user[6]; ?></font></td>
<td ><font color="<?echo $a; ?>"><?php echo $arr_user[7]; ?></font></td>
<td ><font color="<?echo $a; ?>"><?php echo $arr_user[8]; ?></font></td>
<!--------------------------------------------------------------------------------------------------->
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[10],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[11],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[12],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[13],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[14],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[15],"2",".",""); ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo number_format($arr_user[16]); ?></font></td>
<!--<td ">
<font color="<?echo $a; ?>"><?php echo $arr_user[17]; ?></font></td>--->
<td ">
<font color="<?echo $a; ?>"><?php echo $SUBTOTAL; ?></font></td>
<td ">
<font color="<?echo $a; ?>"><?php echo $dataarr_user[18]; ?></font></td>
</tr>
<?php
}
}
?>
<tr><td> </td></tr>
<tr>
<td bgcolor="#FF9900" align="right"> </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<td > </td>
<!--<td > </td>-->
<td bgcolor="#FF6600" align="left"></b><font color="<?echo $a; ?>">TOTAL</B></font></td>
<td bgcolor="#FF6600" align="center">
<font color="<?echo $a; ?>">
<B><?php echo $TOTAL; ?></B>
</font>
</td>
</tr>
</table>
lo que quiero es que cada ves que cambie el usuario haga un nuevo reporte y no lo haga en la misma tabla
como puedo hacer esto