This is not a PHP question. The layout of the page is written in HTML with CSS. So use either tables or css positioning to achieve what you want.
An example:
<!-- header here if you wish - some banners top menu or whatever -->
<table width="100%">
<tr>
<td width="200">Your left bar here</td>
<td>Main content here</td>
</tr>
</table>