Here is part of my php-
echo "<table border='0'>";
while($list = mysql_fetch_assoc($result))
echo "<tr>";
echo "<td>" . $list['SALEPRICE']."</td>";
I want to put a button at FOLLOWING BUYURL with link.
echo "<td><a target='new' href=\"" . $list['BUYURL'] . "\"><b>VISIT STORE NOW</b></a></td>";
echo "</tr>";
echo "</table>";
Just make the backround-color of the td tag the color of the button and it will give a button effect.
Or put a button inside the td tags