I have a simple php script as follows which connects to a database and extracts values.
======================
<?php
ingres_query ("select name, age, town where name= '$name' ");
while ($row = ingres_fetch_row()) {
echo "<tr>";
echo "<td>$row[1]</td>";
echo "<td>$row[2]</td>";
echo "<td>$row[3]</td>";
echo "</tr>";
}
?>
====================
I would like to make the result from $row[3] a part of a link
example: www.my-website-tsg.com/$row[3]
i.e. so that the last part of the link will be from the result of $row[3]
Could someone please help and explain how this would be possible??