Hi,
Can anyone help me with the following script.
The problem line is here..
<td><?php echo $prodArray["strval('product'.$i)"]['name']; ?></td>
Thanks!
<?php
for($i=1; $i<count($prodArray)+1; $i++) {
?>
<tr>
<td><input type='checkbox' name='echo "products".$i; ?>' /></td>
<td><?php echo "product$i"; ?></td>
<td><?php echo $prodArray["strval('product'.$i)"]['name']; ?></td>
</tr>
<?php
}
?>