Try using the . operator. It works like the + in JavaScript and the & in Visual Basic.
Example:
$result = mysql_result($Query,$row,"field");
$string .= $result." ";
This would give you a string with all of the column values separated by a space.
Hope this helps
fLIPIS