How to join many fields with different ID's in only one? I have this MySQL table:
--------------------------------
| *UDH*        |     *Text*     |
--------------------------------
| 050003B90301 | Hi my name is A|
--------------------------------
| 050003B90302 | rmin and I wan |
--------------------------------
| 050003B90303 | t be your frien |
--------------------------------
The UDH field is different but I need join the text field to copy to other table, the result must to be like this:
______________________________________________________________
| UDH          |     Text                                     |
--------------------------------------------------------------
| 1            | Hi my name is Armin and I want be your frien |
---------------------------------------------------------------
Do you know a PHP sentence or other method to make something like this?
 
    