1
Hallo,
meine php sieht sauber auf dem Bildschirm aus ist aber nicht
Valide.
Gruss
Uwe
Die Meldung lautet:
Line 284, Column 70: document type does not allow element "TABLE" here .
…adding="0" border="0" class="sitenav"><tr><td>Seite: 1 von 3</td> <td width="
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).
meine php sieht sauber auf dem Bildschirm aus ist aber nicht
Valide.
Gruss
Uwe
<?php
$progname = "lesentabelle1.php";
$daten_per_site = 25;
if(isset($_GET['seite'])) {
$seite = preg_replace ("/[^0-9]/", "", $_GET['seite']);
// wenn Seite größer 3 dann wird eins gezeigt
}
// Startzahl
if(!isset($seite) || $seite == '') {
$seite = 1;
}
//if ($seite != 1 or $seite != 2 or $seite != 3 or $seite == "") {$seite = 1;}
if ($seite > 3) {$seite = 1;}
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
?>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<title>plan</title>
<style type="text/css">
body {
background-color: #f7f7f7;
font-family: Verdana, Arial;
font-size: 11px;
color: #000000;
}
.sitenav {
background-color: #000066;
}
.sitenav td {
background-color: #e9ebef;
padding: 3px;
font-size: 11px;
text-align: center;
}
.sitenav td a {
color: #990000;
text-decoration: none;
}
.sitenav td a:hover {
color: #000066;
text-decoration: none;
}
</style>
</head>
<body>
<H2>Tidenplan Seite <?php echo $seite; ?></H2>
<?php
// Datei in Array lesen
$fp = file("2008.txt") or die ("Kann Datei nicht lesen.");
# Zeilenanzahl der Datei festellen
$zeilen = count($fp);
# Limit fuer Query erstellen - Eintraege pro Seite
$anz = ($seite-1) * $daten_per_site;
if ($zeilen > 0) {
$navigationslinks = sitenavi($zeilen, $seite, $daten_per_site, $progname);
echo "$navigationslinks\n";
?>
<TABLE style="font-family:verdana; empty-cells:show; font-size: 12px" border="1">
<tr>
<td
style="text-align: center; background-color: rgb(204, 204, 204);"
colspan="3" rowspan="1" >Hochwasser</td>
<td
style="text-align: center; background-color: rgb(204, 204, 204);"
colspan="3" rowspan="1" >Niedrigwasser</td>
</tr>
<tr bgcolor="#cccccc">
<td>Datum</td>
<td>Tag</td>
<td>Zeit</td>
<td>Datum</td>
<td>Tag</td>
<td>Zeit</td>
</tr>
<?php
//echo "<ul>\n";
$j = date('Y');
$m = date('m');
$d = date('d');
$heute = mktime(0,0,0,$m,$d,$j);
$bis = mktime(0,0,0,$m,$d+60,$j);
for ($i = $anz; $i <= ($anz-1) + $daten_per_site; $i++) {
$daten = explode("|",$fp[$i]);
$year[0] = substr($daten[0], 6,4);
$month[0] = substr($daten[0], 3, 2);
$day[0] = substr($daten[0], 0, 2);
$test = mktime(0,0,0,$month[0],$day[0],$year[0]);
// Zeilen ausgeben des aktuellen Bereiches
if ($daten[0] != ''&& $test > $heute ) {
//if ($daten[0] != '' && $test > $heute ) {
//echo "<li>$daten[0] - $daten[1]</li>\n";
//echo "<li>$daten[0] - $daten[1]- $daten[3]- $daten[3]- $daten[5]- $daten[6]- $daten[7]</li>\n";
print("<TR>
<td>$daten[0]</td>
<td>$daten[1]</td>
<td>$daten[2]</td>
<td>$daten[3]</td>
<td>$daten[4]</td>
<td>$daten[5]</td>
</tr>");
}
}
//echo "</ul>\n";
echo "$navigationslinks\n";
} else {
echo "Keine Daten gefunden!\n";
}
echo "</TABLE>\n</body>\n</html>\n";
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
// Seitennavigation
// hier ist auch der Nicht Valide Teil
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
function sitenavi($zeilen, $seite, $pro_seite, $url) {
// alter Seitenzähler $gesamtseiten = ceil($zeilen / $pro_seite);
$gesamtseiten = 3;
$aktuelle_seite = $seite ? $seite : 1;
$linkanzahlausgabe = 2;
$letzte = $linkanzahlausgabe + $aktuelle_seite;
if ($letzte > $gesamtseiten) {
$letzte = $gesamtseiten;
}
$startback = $aktuelle_seite - $linkanzahlausgabe;
if ($startback < 1) {
$startback = 1;
}
$navigationslinks = " ";
if ($gesamtseiten != 1 && $zeilen) {
$seitenlink = "";
if ($aktuelle_seite != 1) {
$prevbl = $aktuelle_seite - 1;
$seitenlink .= "<td><a href=\"$url?seite=1\">« Erste Seite</a></td><td width=\"20\"> <a href=\"$url?seite=$prevbl\"><</a> </td>";
}
for ($i = $startback; $i <= $letzte; $i++) {
if ($aktuelle_seite == "$i") {
$seitenlink .= "<td width=\"20\" style=\"background-color: #ffffff\"><b>$i</b></td>";
} else {
$seitenlink .= "<td width=\"20\"><a href=\"$url?seite=$i\">$i</a></td>";
}
}
if ($aktuelle_seite != 3) {
$nextbl = $aktuelle_seite + 1;
$seitenlink .= "<td width=\"20\"> <a href=\"$url?seite=$nextbl\">></a> </td><td><a href=\"$url?seite=$gesamtseiten\">Letzte Seite »</a></td>";
}
$navigationslinks = "<table cellspacing=\"1\" cellpadding=\"0\" border=\"0\" class=\"sitenav\"><tr><td>Seite: $aktuelle_seite von $gesamtseiten</td> $seitenlink</tr></table>";
}
return $navigationslinks;
}
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #
?>
Die Meldung lautet:
Line 284, Column 70: document type does not allow element "TABLE" here .
…adding="0" border="0" class="sitenav"><tr><td>Seite: 1 von 3</td> <td width="
✉
The element named above was found in a context where it is not allowed. This could mean that you have incorrectly nested elements -- such as a "style" element in the "body" section instead of inside "head" -- or two elements that overlap (which is not allowed).
One common cause for this error is the use of XHTML syntax in HTML documents. Due to HTML's rules of implicitly closed elements, this error can create cascading effects. For instance, using XHTML's "self-closing" tags for "meta" and "link" in the "head" section of a HTML document may cause the parser to infer the end of the "head" section and the beginning of the "body" section (where "link" and "meta" are not allowed; hence the reported error).