<%
/* as of now I simply get the url */
/* you can invent more practical ways to pass the handle*/
/* and of course you'll want to add some restriction here,
as it is it can download anything from you filesystem
as well, password files etc.
it is recomended that you don't leave this to the public
access as it is. Use it to mediate between some php output
you generate yourself and can control, this is just an
example to start playing
*/
include ("JSutil.lib");
$myJS=new JSutil;
$myJS->JSinclude($url);
%> |