Re: [PHP-WIN] Re: calling an ASP program or object from within php

2002-01-14 Thread Nicole Lallande
Thanks Frank - I'm afraid I got windows-panic - duh -- stick to basics - I was making it alot tougher than it should have been just 'cause I was working with windows. Best, Nicole Frank M. Kromann wrote: > Hi, > > If you just need to execute an ASP script on the same (or any other server) y

Re: [PHP-WIN] Re: calling an ASP program or object from within php

2002-01-14 Thread Frank M. Kromann
Hi, If you just need to execute an ASP script on the same (or any other server) you can do it with fopen(). http://some-url.com?var1=$var1&var2=$var2";; if ($fp = fopen($url)) { $data = fread($fp, 4069); fclose($fp); ) ?> - Frank > Yikes -- seems pretty complex for what I need to do righ