yap, I know this... the problem is that I can't copy the script on my machine...
I received authorization to include the script, not to see the contents of the script... That's the prob!
I know there's a function in it called - let's say - "myFunc()", but if I call the function, I get this error:
"Call to undefined function: myFunc()"
This is what I also tried, without any luck:
<?php
$page= "http://www.remoteserver.com/script.php";
$fp = fopen($page, "r");
fpassthru($fp);
myFunc($arg1,$arg2);
?>
But I get the same error...
I also tried to copy the script using fopen, fread and fwrite, but it fails...