echo "... value=" . $row['Name'] . " ...</td>"
When this executes it returns as html code literally:
value=John Dee ...
You need " quotes " around it else john is interpreted as the value and dee is interpreted as some unknown tag.
So change
" ... value=" . $row['Name'] . "... </td>"
to...
To switch off auto css in Dreamweaver:
Edit > Preferences
On the first page under Editing Options, uncheck the box that says 'Use CSS instead of HTML Tags'