So sieht meine layout.lib aus leider lädt der einfach nicht die Bilder :-(


PHP-Code:
<?
function head($titel){
echo '
<table style="border:solid 1px black" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
<tr>
<td valign="middle" align="left" height="15" background="/images/topmenutop.jpg"><b>&nbsp;<font color="#ffffff">'.$titel.'</font></b></td>
</tr>

<tr>
<td bgcolor="#FEFBF5" valign="top" align="left">
<table width="98%" cellpadding="2" cellspacing="2">
<tr>
<td>
';
}

function foot(){
echo '
</td>
</tr>
</table>
</td>
</tr>
</table>

<table border="0" cellpadding="0" cellspacing="0">
<tr><td height="10"></td></tr></table>
';
}

function menuehead($titel){
echo'
<table style="border:solid 1px black" width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#000000">
<tr>
<td valign="middle" align="left" height="15" background="/images/menutop.gif"><b>&nbsp;<font color="#ffffff">'.$titel.'</font></b></td>
</tr>
<tr>
<td bgcolor="#FEFBF5" valign="top" align="left">
<table width="98%" cellpadding="2" cellspacing="2">
<tr>
<td>
';
}

function menuefoot(){
echo'
</td>
</tr>
</table>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0"><tr><td height="10"></td></tr></table>
';
}
?>