Current File : /home/karenpetzb/application/modules/backoffice/views/scripts/product/livraisoncat.phtml
<form action="<?php  echo $this->baseUrl; ?>/backoffice/product/livraisoncat" method="post">
<table cellpadding="0" cellspacing="7" border="0">
<tr>
	<td align="center" colspan="5">
		<span class="errorText"><?php echo $this -> messageError; ?></span>
		<span class="successText"><?php echo $this -> messageSuccess; ?></span>
	</td>
</tr>
<tr>
	<td align="left" colspan="11">
		<input type="submit" value="Modifier">
	</td>
</tr>
<?php 
$show = array();
foreach($this->listallcategories as $row) : ?>
<tr>
	<?php for ($level=0 ; $level<11; $level++) { ?>
	<td >
		<?php 
		if ((!isset($show['NOM'.$level]) || $show['NOM'.$level] != $row['NOM'.$level]) && $row['NOM'.$level] != null) {
		?>
		<input size="4" type="text" name="livraison_poids_<?php echo $row['ID'.$level]; ?>">
		<input type="hidden" name="livraison_poids_id[]" value="<?php echo $row['ID'.$level]; ?>">
		<?php } ?>
	</td>
	<td >
		<?php 
		if ((!isset($show['NOM'.$level]) || $show['NOM'.$level] != $row['NOM'.$level]) && $row['NOM'.$level] != null) {
		?>
			
			<?php echo $this->escape($row['NOM'.$level]); 
			$show['NOM'.$level] = $row['NOM'.$level];
		}
		?>
	</td>
	<?php } ?>
</tr>
<?php endforeach; ?>
</table>
</form>