Una cosa del genere ti potrebbe andare?
Codice PHP:
<html>
<head>
<title>prova</title>
<style type="text/css">
#contenitore
{
width: 800px;
height: 610px;
}
#header
{
width:100%;
height:200px;
background:lightgreen;
}
#sinistro
{
float:left;
margin-top:20px;
width:150px;
height:350px;
background:lightblue;
}
#centrale
{
float:left;
margin-top:20px;
width:500px;
height:350px;
background:lightgray;
}
#destro
{
float:right;
margin-top:20px;
width:150px;
height:350px;
background:lightblue;
}
#footer
{
margin-top:20px;
height:50px;
background:lightgreen;
}
</style>
</head>
<body>
<div align="center">
<div id="contenitore">
<div id="header">HEADER</div>
<div id="container">
<div id="sinistro">SINISTRO</div>
<div id="centrale">CENTRALE</div>
<div id="destro">DESTRO</div>
<div style="clear:both"></div>
</div>
<div id="footer">FOOTER</div>
</div>
</div>
</body>
</html>