> $f=fopen('http://your.server/legacyscript.asp"), "r");
> if($f)
> {
>  /*read the data from the file handle and deal with it as you 
> wish - you
> might want to process it somehow, or just output it as part 
> of the current
> page*/
>  fclose($fp);
> }

This won't include the ASP script.

It will include the OUTPUT of the ASP script, just like hitting
a web page run by PHP will produce the OUTPUT of the PHP script.

It also won't work at all well currently because your fopen 
filename quote starts with a ' and ends with a "...

Jason

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to