Ah, thats an easy one then
Code:
<table>
<tr>
<th>Reference</th>
</tr>
<?php
session_start();
$references = explode(',' $_SESSION['portfolio']);
foreach($references as $ref) {
?>
<tr>
<td><?= $ref; ?></td>
</tr>
<?php
}
?>
</table>
You'd most likely want to do a select in hte foreach loop, to get more info on the property though, such as thumbnail, price etc.