Habe da eine Frage ^^ :

Wenn ich nach dem erstellen der Tabelle, hochladen des Ordners versuche den Code in meine Index.php Datei einzubaue, wird nur noch eine lehre Seite angezeigt.

So sieht meine Index.php Datei aus:
PHP-Code:
<?php
error_reporting
(E_ALL);
include 
"config.php";
@
mysql_connect(MYSQL_HOSTMYSQL_USERMYSQL_PASS) OR die(mysql_error());
mysql_select_db(MYSQL_DATABASE) OR die(mysql_error());
include 
"variablen.php";
if(isset(
$_GET['section'])){
session_start();
}
if(
get_magic_quotes_gpc()) {
array_stripslashes($_GET);
array_stripslashes($_POST);
array_stripslashes($_COOKIE);
}
/*if(isset($_SESSION['ID'])) {
$sql="UPDATE users
SET last=NOW()
WHERE ID=".$_SESSION['ID'].";";
$result = mysql_query($sql) OR die(mysql_error());
}*/
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
 <head>
 <title>*Purple Butterfly TCG*</title>
 <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
 <link rel="stylesheet" type="text/css" href="style.css">
 </head>
 <body topmargin="0" leftmargin="0" bgcolor="#e1c5ec" style="background-image: url(bild1.jpg);">

<div align="center">
 <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#4e8ec4" width="800">
  <tr height="1">
   <td width="150">&nbsp;</td>
   <td width="500">&nbsp;</td>
   <td width="150">&nbsp;</td>
  </tr>
  <tr height="350"><td colspan="2">
   <div id="head" style="overflow:auto">
    <?php include "head.php"?>
   </div>
   </td>
   <td width="150" valign="top" rowspan="2">
    <div id="navi2" style="overflow:auto">
     <?php include "navi1.php"?>
    </div>
   </td>
  </tr>
  <tr height="500">
   <td width="650" valign="top" colspan="2">
    <div id="main" style="overflow:auto">
      <?php include "main.php"?>
    </div>
   </td>
  </tr>
 </table>
</div>

 </body>
</html>
Hatte auch versucht den Code:
PHP-Code:
<?menuehead("PN System");?>
<img src="images/pfeil.gif" border="0" alt="">&nbsp;<a href="?content=/pnsys/inbox">Posteingang</a>

<?
$sql = db_query("SELECT COUNT(id) AS neu FROM ".$db_prefix."_inbox WHERE empfaenger_id=".$_SESSION['uid']." AND gelesen=0");
$msg = @mysql_fetch_array($sql);
echo '<b>('.$msg['neu'].')</b>'; ?><br>
<img src="images/pfeil.gif" border="0" alt="">&nbsp;<a href="?content=/pnsys/outbox">Postausgang</a>
<img src="images/pfeil.gif" border="0" alt="">&nbsp;<a href="?content=/pnsys/neu">Neue PN</a><br />
<img src="images/pfeil.gif" border="0" alt="">&nbsp;<a href="?content=/pnsys/nref">PN an meine Refs</a><br />
<?menuefoot();?>
als unterseite einzu bauen, leider klappte das auch nicht.


Muß ich das noch was "umschreiben" bzw verändern?
Oder.........??


Liebe grüße

Sunrise