These two lines in your code not make sense:
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.flowersmanama.com");
First, you're outputting part of HTML page, and then suddenly making redirect.
If you want to redirect to another page, these two lines must be above any HTML code in your php script, like this:
<?
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.flowersmanama.com");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />