What is wrong with this below.
echo "<TD>" "<img src=\" ".$product["Picture"]."</TD>";
You haven't closed the IMG-tag and you have a space to much. If you want to separate two strings then you have to connect them with a dot (see below).
echo "<TD>"."<img src=\" ".$product["Picture"]."\" /></TD>";