Thanks for all your help!
$T1 = row['T1'];
echo("$T1");
<INPUT ........ VALUE=<?PHP echo("$T1"); ?> ......... >
In the code above, echo("$T1"); prints out "Title A", which is expected. The code <INPUT ........ VALUE=<?PHP echo("$T1"); ?> ......... > prints out "Title". So Why does the string get shortened??????