There may be some perverse way of getting php and asp to parse the same
page, but I;m sure you don't want to go there.
If you have a legacy ASP script which you need to access, you can call it
from within PHP using something like:
$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);
}
Cheers
--
Phil Driscoll
Dial Solutions
+44 (0)113 294 5112
http://www.dialsolutions.com
http://www.dtonline.org
--
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]