Hi, If you just need to execute an ASP script on the same (or any other server) you can do it with fopen().
<? $var1 = "abc"; $var2 = 123, $url = "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 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 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: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > -- PHP Windows 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]