<html>
<body>
<center>
<table width="50%">
<tr>
<?php foreach($this->cols as $key=>$column): ?>
<th>
<?php $this->eprint($column); ?>
</th>
<?php endforeach; ?>
</tr>
<?php foreach($this->movies as $key=>$row): ?>
<tr>
<?php foreach($this->cols as $key=>$column): ?>
<td>
<?php $this->eprint($row[$key]); ?>
</td>
<?php endforeach; ?>
</tr>
<?php endforeach; ?>
</table>
</center>
</body>
</html>