I have the following code:
<td bgcolor="#FF0000"><center>
<? echo $rows['msisdn']; ?>
</td>
<td align="center" bgcolor="#FFFFFF">
<a href="control_clientinfo.php?member_id=<? echo $rows['member_id']; ?>"
class="update">Look Up</a>
</td>
This draws data from mysql for me and does what it needs to do, question
<td bgcolor="#FF0000">
<center>
<? echo $rows['msisdn']; ?>
</td>
How do I change that background colour once the link has been visited. I know how to change the visited link colour but i want to change the table viewed colour.
Is this possible or am I biting into a rock?