• Das Erstellen neuer Accounts wurde ausgesetzt. Bei berechtigtem Interesse bitte Kontaktaufnahme über die üblichen Wege. Beste Grüße der Admin

richtiger doctype?

schwerminator

New member
die seite:
PHP:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
<link rel="stylesheet" href="style.css" type="text/css">
<script language="JavaScript" src="script.js"></script>
</head>
<body>
<table style="width: 100%; height: 100%; border-spacing: 1px;" cellspacing=1>
  <tr>
    <td colspan=2 id="header">
     
    </td>
  </tr>
  <tr>
    <td class="info" style="text-align: center; text-decoration: underline;">
      Navigation
    </td>
    <td class="info" style="padding-left: 10px;">
      <?php
      if (isset($_GET["page"])){
        echo $_GET["page"];
      }
      else{
        echo  "news";
      }
      ?>
    </td>
  </tr>
  <tr>
    <td id="navigation" align="center">
      <table id="menu" cellspacing=2>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="location.href='index.php?page=news';">
            News
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Upload
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Downloads
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Links
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Guestbook
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Kontakt
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="">
            Impressum
          </td>
        </tr>
        <tr>
          <td onmouseover="menu_over(this)" onmouseout="menu_out(this)" onclick="location.href='index.php?page=admin';">
            Admin
          </td>
        </tr>
      </table>
      <br>
      <iframe frameborder=0 src="poll.php" style="width: 145px; height: 160px;"></iframe>
      <fieldset>
      <legend> <span class="u">Statistik</span> </legend>
      <table style="font-family: Tahoma; font-size: 10px; color: #015B7E; width: 100%;">
        <tr>
          <td>
            Counter:
          </td>
          <td>
            <?php include('counter.php'); ?>
          </td>
        </tr>
      </table>
      </fieldset>
    </td>
    <td id="content">
      <?php
      if (isset($_GET["page"])){
        $page = $_GET["page"];
      }
      else{
        $page = "news";
      }
      include($page.".txt");
      ?>
    </td>
  </tr>
</table>
</body>
</html>

doctype:
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 
dkdenz schrieb:
Mach erstmal überall die " " rein...
wo?
ich habe die zeile jetzt so:
Code:
<iframe frameborder="0" src="poll.php" width="145" height="160">Um dieses Poll sehen zu können, mussen Sie Frames zulassen.</iframe>
 
Zuletzt bearbeitet:
Zurück
Oben