LoadMovie Problem For Image Loader

Hey,
I’m working a photography site, in which in a swf file on a web page needs to display an image from a database with a copyright symbol over it. So far I’ve developed a php page that pulls the imgs from the database into XML for flash, and then I use the _root._url to get the url of the swf which has a php var in it ([COLOR=#0066cc]http://…swf?id=$id[/COLOR]). Then it matches id’s of the xml and the swf url and i use the loadMovie() command to load the url.

Thats where my problem is, ive tested the absolute url and the relative url and they both dont work in flash, but when i test the image url on a browser it works. When i checked the getBytesLoaded() and getBytesTotal() of the movieclip thats in the loadMovie tag its 3460 out of 3460 so its just not displying the img. heres a portion of the code, help me out!

   var1 = "/photos/" + photolist*.childNodes[1].firstChild.nodeValue;
    var2 = filesize;
    var3 = loaded;
    picture.loadMovie("/photos/" + photolist*.childNodes[1].firstChild.nodeValue);
    picture._width = 550;
    picture._height = 400;
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    loading_txt = "Loading Image, Please Wait...";
    if (loaded != filesize) {
     preloader._visible = true;
     preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
     preloader._visible = false;
     complete3 = true;
    }