The below code seems to work in all browsers, apart from IE. Please, please can anyone help.
Kind Regards
Janey Bad
Code:
<?php if ($rwp['MEDIA_IMAGE_00'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_00'];?>" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;"/></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_01'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_01'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_02'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_02'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
</tr>
<tr>
<td height="2" colspan="4"></td>
</tr>
<tr>
<?php if ($rwp['MEDIA_IMAGE_03'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_03'];?>" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_04'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_04'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_05'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_05'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
</tr>
<tr>
<td height="2" colspan="4"></td>
</tr>
<tr>
<?php if ($rwp['MEDIA_IMAGE_06'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_06'];?>" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_07'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_07'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_08'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_08'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
</tr>
<tr>
<td height="2" colspan="4"></td>
</tr>
<tr>
<?php if ($rwp['MEDIA_IMAGE_60'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_60'];?>" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
<?php if ($rwp['MEDIA_IMAGE_TEXT_60'] != ""){ ?>
<td align="left" valign="top"><img src="images/<?php echo $rwp['MEDIA_IMAGE_TEXT_60'];?>" alt="" width="63" height="78" onclick="bigimg(this.src)" style="cursor:pointer;" /></td>
<?php } ?>
Kind Regards
Janey Bad