Thomas_Jung
Erfahrenes Mitglied
Hallo
Wenn ich den Wert $anzahl auf 16 setze fehlen die
KOPFZEILEN beim ausdrucken/druckvorschau der Liste
Setze ich die $anzahl auf 1-15 ist alles super beim druck.
Wo liegt der Fehler?
Browser FIREFOX 1.5.0.7
Gruß Thomas
Wenn ich den Wert $anzahl auf 16 setze fehlen die
KOPFZEILEN beim ausdrucken/druckvorschau der Liste
Setze ich die $anzahl auf 1-15 ist alles super beim druck.
Wo liegt der Fehler?
Browser FIREFOX 1.5.0.7
Code:
<html>
<head>
<title></title>
<style>
@media screen {
div {
height:95%;
width:100%;
position:absolute; top:5%; left:0px;
overflow:auto;}
table.test {
width:99%;
border:1px solid black;}
thead {color:#F00;}
table.test>tbody {
overflow:auto;
height:95%; }
td {
font-size:14px;
font-weight:bold;
text-align:center;
border:1px solid black;}
tfoot {color:#F00;}
}
@media print {
height:100%;
}
</style>
</head>
<body>
<p>Seitenanfang</p>
<table class="test">
<thead>
<tr>
<td>
<?php
/* ERHÖHE ICH DEN WERT AUF 16 FEHLT DER KOPF DER SEITE */
$anzahl = 15;
for($zeile=1;$zeile< $anzahl;$zeile++)
{
print "KOPFZEILEN: $zeile<br>";
}
?>
</td>
</tr>
</thead>
<tfoot>
<tr>
<td>FUSSZEILE</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>
<?php
for($e=1;$e< 150;$e++)
{
print "BODY $e<br>";
}
?>
</td>
</tr>
</tbody>
</table>
</body>
</html>
Gruß Thomas