Versuch es so:
statt:
<html>
<head>
<?
session_start();
include_once('inc/adodb/adodb.inc.php');
include_once('config.php');
(...)
so:
<?php
session_start();
include_once('inc/adodb/adodb.inc.php');
include_once('config.php');
(...)
Deine Seite beginnt also NICHT mit "HTML, Head oder sonst etwas. Das Allererste(!!!) ist das <? oder <?php, dann das session_start. Auch kein Leerzeichen, Enter etc.
UNTER das ganze PHP Zeugs, und ÜBER die erste Tabelle, also HIER:
?>
<HTML>
<HEAD></HEAD>
<BODY>
<table width="100%">
...kannst du das dann schreiben.
Geht das so?
nico