I have a set of urls in a database and I want it so you could click on the "name" and it will send you to the url, how could I do that?
while($row = mysql_fetch_array($result))
{
echo "<tr><strong>";
echo "<td><b>" . $row['url'], $row['Name'] . "</td>";
echo "</strong></tr>";
}
I the footer the same text on every page but I get this
All Rights Reserved mywebsite 200 - echo date("Y")
but what I want is this
All Rights Reserved mywebsite 2008 - 2009
my code
$footer= 'All Rights Reserved mywebsite 2008 - echo date("Y")';