hi, im trying to learn how this works, but sadly i can't get it working. What am I doing wrong? The databse is called "test" and the only table i have is named "logo". There is one field in the logo table which also is named "logo"
$db_connection =
mysql_connect("$server","$user","$pass")
or die ("No DB Connection");
$db = mysql_select_db("$db_name",$db_connection)
or die ("Couldn't select DB");
echo "$logo";
the "logo" field contains the URL to my logo. when running this i get a red cross. Can someone help an newbie?