so the script is for albums and music, the template of that script, contains only 4 celles: 1. mumber of the artist, 2. his name, 3.number of albums, 4. number of songs. but I need to have a cell for the (artists' image) here is the code of the table in the script:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="sectiontableheader" align="right" width="5%">#</td>
<td class="sectiontableheader" width="75%"><? echo JText::_('Artist'); ?></td>
<td class="sectiontableheader" align="right" width="10%"><? echo JText::_('Albums'); ?></td>
<td class="sectiontableheader" align="right" width="10%"><? echo JText::_('Songs'); ?></td>
</tr>
<?php
$k = 1;
for ($i=0, $n=count( $this->items ); $i < $n; $i++){
$row = &$this->items[$i];
$link= JRoute::_( 'index.php?option=com_muscol&view=artist&id='. $row->id . $itemid);
?>
<tr class="sectiontableentry<? echo $k; ?>" >
<td align="right"><? echo ($i + 1); ?></td>
<td><a href='<?php echo $link; ?>'><?php echo $row->artist_name; ?></a></td>
<td align="right"><?php echo $row->num_albums; ?></td>
<td align="right"><?php echo $row->num_songs; ?></td>
</tr>
<? $k = 3 - $k; } ?>
</table>
--------------------------------------------------------------------
so teel me what i need to add or change!!!
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="sectiontableheader" align="right" width="5%">#</td>
<td class="sectiontableheader" width="75%"><? echo JText::_('Artist'); ?></td>
<td class="sectiontableheader" align="right" width="10%"><? echo JText::_('Albums'); ?></td>
<td class="sectiontableheader" align="right" width="10%"><? echo JText::_('Songs'); ?></td>
</tr>
<?php
$k = 1;
for ($i=0, $n=count( $this->items ); $i < $n; $i++){
$row = &$this->items[$i];
$link= JRoute::_( 'index.php?option=com_muscol&view=artist&id='. $row->id . $itemid);
?>
<tr class="sectiontableentry<? echo $k; ?>" >
<td align="right"><? echo ($i + 1); ?></td>
<td><a href='<?php echo $link; ?>'><?php echo $row->artist_name; ?></a></td>
<td align="right"><?php echo $row->num_albums; ?></td>
<td align="right"><?php echo $row->num_songs; ?></td>
</tr>
<? $k = 3 - $k; } ?>
</table>
--------------------------------------------------------------------
so teel me what i need to add or change!!!