onLoad not successful

Hi

This is pretty simple that I just cant make it work. When I ran my FLA with this codes, it works ok. But uploading to actual server and run it, the load turns out to be unsuccessful. Any help would be appreciated.

onClipEvent (load) {
myBaby = new Array();
myVars = new LoadVars();
myVars.onLoad = function(success) {
if (success == true) {
_parent.ahoy.text = “loaded”;
for (i=0; i<myVars.count-1; i++) {
attachMovie(“searchResult-single”,“searchResult-single”+i,i);
var newName = eval(“searchResult-single”+i);
newName._x = 0;
newName._y = (i)*90;

       myBaby* = new Array();
       what = "sid"+(i+1);
       myBaby*[0] = myVars[what];
       newName.searchTitle = myBaby*[0];
   }

}else{
_parent.ahoy.text = “not loaded”;
}
};
myVars.load(“http://SomeDomainName.com/projects/searchresult_ID.php",this,"GET”);
}