|
Posted by rich on 09/30/08 11:33
In article <yPWdnSo_EadsnBLeRVnyvQ@eclipse.net.uk>, John says...
>
>Many thanks, all.
>
>The solution appears to be to use INDEX.PHP and then call ASP routines from
>the <FORM> as a cgi
>
>Regards
>John
>
Since PHP and ASP are parsed by the server you can probably support both
independent if your server is configured correctly to do that. I don't believe
you cold run an ASP program from within a PHP page, or the reverse, but could
probably use form content from one and send it to the other.
Rich
--
Newsguy -- http://newsguy.com
>
>"NC" <nc@iname.com> wrote in message
>news:1133142326.830684.107010@g14g2000cwa.googlegroups.com...
>> John wrote:
>>>
>>> Is it possible to invoke an ASP script from PHP?
>>
>> Define "invoke"... If you want to simply start an ASP script and/or
>> capture data it returns, you can write something like this:
>>
>> $data = file_get_contents('http://localhost/path/ASPpage.asp');
>>
>> Cheers,
>> NC
>>
>
>
[Back to original message]
|