Are the columns all in one table?
If they are, do a standard select and give each a variable name
then use list() to concatenate them
$result=mysql_query("select col1, col2, col3 from mytable where id='id'") or die ("Error in query.".$result);
while (mysql_num_rows($result) > 0)
{
$row=mysql_fetch_array($result);
$col1=$row['col1'];
//etc
list($col1, $col2, $col3)=$combined;
echo $combined.'<br>';
}
or something like that anyway 🙂