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

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

2002-01-14 Thread Nicole Lallande
Yikes -- seems pretty complex for what I need to do right now but definately cool to download and use for windows development down the road - thanks, Nicole Andrew Stopford wrote: > Hi, > > You have a couple of options but I would recommend using WDDX > (http://www.openwddx.org), both ASP an

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

2002-01-14 Thread Andrew Stopford
Hi, You have a couple of options but I would recommend using WDDX (http://www.openwddx.org), both ASP and PHP support WDDX and its great way of sharing data between the two. -- Andrew Stopford http://www.a-coda.com -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EM