dennismonsewicz Posted April 1, 2008 Share Posted April 1, 2008 Anyone know how to get ASP pages to talk to PHP pages? Any good tutorials? Quote Link to comment Share on other sites More sharing options...
trq Posted April 1, 2008 Share Posted April 1, 2008 What exactly do you meen? Asp and PHP are both used to program server side applications, all you need do to execute these applications is make a http request to the correct url and await the response. Quote Link to comment Share on other sites More sharing options...
dennismonsewicz Posted April 1, 2008 Author Share Posted April 1, 2008 Well to have PHP code read and execute ASP code Quote Link to comment Share on other sites More sharing options...
trq Posted April 1, 2008 Share Posted April 1, 2008 PHP can't execute asp and vs versa. However, you can quite easily call an asp script and retrieve its result. eg; Â <?php $result = file_get_contents('http://somesite.com/someasppage.asp'); ?> Quote Link to comment Share on other sites More sharing options...
dennismonsewicz Posted April 1, 2008 Author Share Posted April 1, 2008 aight thanks buddy, I am trying to work around an ASP problem. And my boss doesn't want to switch to PHP, so I am trying to convince my boss to switch, but so far no luck Quote Link to comment Share on other sites More sharing options...
trq Posted April 1, 2008 Share Posted April 1, 2008 Sounds like your boss is a moron I gave up on asp 6 years ago. Quote Link to comment Share on other sites More sharing options...
dennismonsewicz Posted April 1, 2008 Author Share Posted April 1, 2008 And this is where I shall keep my comments to myself Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.