Hellow I am using the following as an included file and for some reason it does not display anything on the page....I have installed php 3.0.18 and the database and table is there and has data in it. Can you see anyting wrong?
<?
$store_db = "dinary_data";
if (! @mysql_connect("bla", "bla", "alb") )
{
echo "Error: Connectiong to DataBase : $store_db<br>\n";
exit();
}
$result = mysql_db_query($store_db, "SELECT * FROM Usefull_links");
echo "<table>\n";
while ( $r = mysql_fetch_array($result) )
{
echo "<tr>\n";
echo "<td><center><font color=#0033af><a href='" . $r["Link_address"] . "'>" . $
r["Link_name"] ."</td>\n";
echo "</tr>\n";
}
echo "</table>\n";
?>