Necesito hacer un reporte por día, quiero que los columnas se repitan con los resultados vertical y se quede fija la primera columna porq es una informacion unica.
Quiero que se repita verticalmente la columba que dice FECHA (MO/MT). La columna SC se debe mantener fija. Alguna idea?
Código PHP:
<!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>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="200" border="1">
<tr>
<th scope="col"></th>
<th colspan="2">FECHA</th>
</tr>
<tr>
<th scope="col">NC</th>
<th scope="col">MO</th>
<th scope="col">MT</th>
</tr>
<tr>
<th scope="row">B</th>
<td> </td>
<td> </td>
</tr>
<tr>
<th scope="row">C</th>
<td> </td>
<td> </td>
</tr>
</table>
</body>
</html>