I have a web page that echos out words from a database as a repeat region.
The words automatically become hyperlinks to other pages.
There are currently three in total.
The target pages then display records from another database table occording the the class_id
Example url
/softwarelist.php?class_id=777
The words echoing onto the page as text look very plain.
Is it possible to replace the database words with button graphics.
This is the php code
recordset
$query_rs_level = "SELECT key_id, `keyword` FROM `keywords_lit` ORDER BY `keyword` ASC";
$rs_level = mysql_query($query_rs_level, $abe) or die(mysql_error());
$row_rs_level = mysql_fetch_assoc($rs_level);
$totalRows_rs_level = mysql_num_rows($rs_level);
repeat region
<?php do { ?>
<a href="softwarelist.php?class_id=<?php echo $row_rs_class['class_id']; ?>"><?php echo $row_rs_class['classtitle']; ?></a>
<?php } while ($row_rs_class = mysql_fetch_assoc($rs_class)); ?>