yes, this is possible. I'm doing the exact same thing for the script that I'm working on right now. The easiest way to do this is create a php script for yourself that echos the contents that you want to show. Then you can use an XMLHTTP object to read the contents of the output. here's a snippet:
code:
var xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.open("GET", "http://www.domain.com/file.php", true);
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState == 4) {
if(xmlhttp.status == 200) {
Debug.Trace('Data returned: ' + xmlhttp.responseText)
} else {
Debug.Trace('Error: Could not open web page');
}
}
}