Problem with server

Ok.

I created a CMS for a website I am working on. The php files send the data from the database to the flash swf.

The way I was testing the files is as follows. I stored the php files on the server and from my local pc called that page on my webserver using a full url path.

i.e.


stop();
myData = new LoadVars();
myData.ref = this;
myData.load("http://ecocite.ca/homeInfo.php");
myData.onLoad = function(){
	homeInfoText.html= true;
	homeInfoText.htmlText= myData.homeInfoText;
	trace(homeInfoText.htmlText= myData.homeInfoText);
}; 

Now this works great on my home pc. When I upload the swf I get undefined. I am almost 100% sure its a permission promlem.

Does anyone have any ideas?