<table width="100%">
	<tr>
		<td colspan="2"><b>Demande d'inscription</b></td>
	</tr>
	<tr>
		<td colspan="2" style="border-bottom: 1px solid #8e1b58">&nbsp;</td>
	</tr>
	<tr>
		<td colspan="2">&nbsp;</td>
	</tr>
	<?php foreach($this->data as $k=>$v): 
	?>
	<tr>
		<td width="20">&nbsp;</td>
		<td><?= ucfirst($k) ?></td>
		<td><?php if(is_array($v)){
			echo implode(', ',$v);			
		}else{
			echo $v;
		} ?></td>
		<td width="20">&nbsp;</td>
	</tr>	
	<?php endforeach; ?>
</table>
