can i load 2 pages into an iframe, one after the other? if so, how?
here is what i am trying...
in the php...
echo 'band = new Array()',"\n";
echo 'band.src = "http://www.mysite.com/removestuff.php?foldernumber=',$foldernumber,'"',"\n";
in the javascript when a button is pushed.....
document.getElementById('playerswap').src = band.src;
document.getElementById('playerswap').src = tempplayer;
Thanks!
Tim