mysql_connect("dbhost", "dbusername", "dbpassword") or die(mysql_error());
mysql_select_db("dbname");
mysql_query("SELECT * FROM tablename");
while($row = mysql_fetch_array($result))
{
// Code
}
Are both the database and table named "Flower"?
If the database is name "Flower", but the table you want information pulled from is named "RosesAreRed", your mysql_query should say "SELECT * FROM RosesAreRed".
At least thats what I've gathered from your code.