http://blabla.de/index.php?section=link

Nee, sogar dreimal: zweimal relativ und einmal absolut, ganz nach dem Motto: "Aller guten Dinge sind drei". :suspekt:

HTML:
<link href="images/style/style.css" rel="stylesheet" type="text/css">
<table width="799" align="center" cellspacing="7" bgcolor="#FFFFFF">
  <tr>
    <td height="90"><img src="images/seite/header.jpg" width="800" height="100"></td>
  </tr>
  <tr>
    <td height="341" valign="top" background="images/style/seite1.gif" bgcolor="eeeeee"><table width="802" height="264" cellspacing="5">
      <tr>
        <td width="155" height="20" align="center" background="images/seite/hg.JPG"><strong class="ueberscrift">:: Hauptmen&uuml; :: </strong></td>

        <td>&nbsp;</td>
        <td background="images/seite/hg.JPG"><strong class="ueberscrift">Herzlich Willkommen !  </strong></td>
        <td>&nbsp;</td>
        <td align="center" background="images/seite/hg.JPG"><strong class="ueberscrift">:: Member Center :: </strong></td>
      </tr>
      <tr>
        <td height="273" rowspan="2" valign="top"><p><a href="?main">Home&nbsp;<br>

          </a></p>
          <p><a href="?test">Test</a></p>
          <p><a href="?error">Fehlerseite</a></p></td>
        <td width="14" height="273" rowspan="2" valign="top"><p>&nbsp;</p>          </td>
        <td width="400" rowspan="2" valign="top">
		
		
<link href="http://xurio.de/tet/images/style/style.css" rel="stylesheet" type="text/css">
<link href="images/style/style.css" rel="stylesheet" type="text/css">
<body class="hinweis_dick">:: Die Seite ist im momet nicht verf&uuml;gbar und / oder im Aufbau :: 
  


</td>
        <td width="12" rowspan="2" valign="top">&nbsp;</td>
        <td height="17" valign="top">Status: <span class="hinweis_dick"><strong>
          <b><font color="red">nicht eingeloggt</font></b>        </strong></span></td>
        </tr>
      <tr>
        <td height="134" valign="top">
		
		

<form method="post" action="config/dblogin.php">
  <hr>
  <span class="klein_schrift">Name:</span><br>
          <input name="name" type="text" id="name" size="20" maxlength="20">
          <br>
          <span class="klein_schrift">Passwort</span><br>
          <input name="pass" size="10" maxlength="20" type="password">
          <input type="submit" name="Submit" value="Login">

          <br>
          <input name="remember" value="yes" type="checkbox">
Login merken
<hr>
</form>


 &nbsp;</td>
      </tr>
      <tr>
        <td height="21">&nbsp;</td>

        <td height="21" align="center">&nbsp;</td>
        <td height="21" align="center"> <hr>
          ( c ) Rene Schumacher</td>
        <td height="21" align="center">&nbsp;</td>
        <td height="21">&nbsp;</td>
      </tr>
    </table></td>
  </tr>

</table>
 
haja einmal in der error.php und einmal in der index.php .. weil ich nicht wußte wo er die css rauszieht habe ich es in beiden dateien eingebunden ... das es 2mal in der error.php ist ist mir schleierhaft ..

aber warum geht es nicht ?
 
Schau mal da:
http://validator.w3.org/check?uri=h...+automatically)&doctype=Inline&ss=1&verbose=1
Es zählt der Quelltext, der am Ende rauskommt, nicht der, der in der error.php steht

Machs einfach so:
PHP:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://xurio.de/tet/images/style/style.css">
<title>Titel der Seite</title>
</head>
<body>

<?php
if(isset($_GET['index'])) {
    include ("index.php");}

if(isset($_GET['test'])) {
    include ("test.php");}

if(isset($_GET['error'])) {
    include ("error.php");}

if(isset($_GET['main'])) {
    include ("main.php");}
?>
 
</body>
</html>
Und in deinem Unterseiten schreibst du dann einfach den HTML-Quellcode, also z.B:
HTML:
<p>Test</p>
 
wenn ich den code in der index.php eingebe geht es .. aber ich habe den code


HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://xurio.de/tet/images/style/style.css">
</head>
<body>

<?php
if(isset($_GET['index'])) {
    include ("index.php");}

if(isset($_GET['test'])) {
    include ("test.php");}

if(isset($_GET['error'])) {
    include ("error.php");}

if(isset($_GET['main'])) {
    include ("main.php");}
?>
 
</body>
</html>

In einer andren Datei gespeichert und füge in dann da ein wo ich ihn haben will mitels Include

..
 
Aus

HTML:
<td width="400" rowspan="2" valign="top">
		
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
       "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<link rel="stylesheet" type="text/css" href="http://xurio.de/tet/images/style/style.css">
</head>
<body>


<body class="hinweis_dick">:: Die Seite ist im momet nicht verf&uuml;gbar und / oder im Aufbau :: 
 
</body>
</html> 

</td>
wird

HTML:
<td width="400" rowspan="2" valign="top">
		
<p class="hinweis_dick">:: Die Seite ist im momet nicht verf&uuml;gbar und / oder im Aufbau ::</p>
  
</td>
 
Zurück