Couldn't show "&" from SQL> PHP> FLASH

Dear all,

I’m doing a flash site with some data in MySQL, I have create a text field on flash and set the html = true, but it can not show the “&” no matter I type & or & on my data base… how can I show the & sign?

What I have done on MySQL is - type “me & you” on a field called “designer” which under an item call “table”.

Then my PHP output will be:
&n=4&&id0=2&&prod_name0=table&designer0=me & you&wholesales_price0=&price0=1,680…

and my AS on flash is :

this.createTextField(“my_txt”, 10, 100, 100, 100, 19);
my_txt.autoSize = “left”;
my_txt.html = true;
get_full_desc ();

function get_full_desc () {
var get_item = new LoadVars();
get_item.load (“productbycat.php?sid=”+ 7);
get_item.onLoad = function(success){
if (success){
my_txt.htmlText = this[“designer”+0];
}
}
}

BUT, the out come of the flash just show “me” on designer, the words “& you” were unable to show, can any one knows the solution?

thx,
Zen Nam