Código HTML:
<a href="http://mi-dominio.com/Que tal.html"></a>
Aqui os dejo el codigo php:
Código PHP:
<?php
$conexion=mysql_connect("-","-","-") or
die("Problemas en la conexion");
mysql_select_db("basededatos",$conexion) or
die("Problemas en la selección de la base de datos");
echo "<table width='600' border='1' cellpadding='1' cellspacing='1'>";
echo "<tr>";
echo "<td> <strong>Nombre</strong></td>";
echo "</tr>";
$q = "SELECT * FROM tabla";
$rs = mysql_query($q);
while ($row = mysql_fetch_array($rs)) {
echo "<tr>";
echo '<td><a href="http://mi-dominio.com/'.$row['nombre'].'.html">'.$row['nombre'].'</a></td>';
echo "</tr>";
}
echo "</table>";
?>