Help with MySQL to Transpose a Table

Hi,

I have a MySql Table which looks like this

Evaluator_ID Evaluator_Name
1 Manku
2 Jenny
3 Evaluator
4 Ian
99 test1

I need to transpose this tabe to look like this:

Manku Jenny Evaluator Ian Test1
1 2 3 4 99

Please help.