Hey guys...
I am having some trouble to retrieve php/mysql data from flash media server.

Heres an example:

Code:
content_lv = new LoadVars();

application.onConnect = function(currentClient, username)
{
retrieveAuctionData = function()
	{
		trace("INSIDE RETRIEVE AUCTION DATA");
		content_lv.load("http://www.mysite.com/php/m.php");
		content_lv.action = "retrievePortalAInfo";
		content_lv.onLoad = function(succes) 
		{
			if (succes) 
			{
				trace("INSIDE SUCCESS");
				trace(content_lv.Slot0);
				for (e = 0; e<content_lv.cant; e++) 
				{
					trace("Current Price from slot " + content_lv["Slot"+e] + " IS: " + content_lv["Current_Price"+e]);
				}
			} 
			else
			{
				trace("Error loading auctions dynamic data");
			}
		}
		content_lv.sendAndLoad("http://www.mysite.com/php/m.php", content_lv, "POST");
	}
}
I am getting INSIDE SUCCESS but Slot0 is giving me undefined and the loop is not even working...testing with this same code from simple as2 fla, it works great...
Do you have any ideas and or suggestions on what I should be changing?

Thanks a lot in advance!!
Cheers.