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? Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/ 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. Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506828 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 Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506834 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'); ?> Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506839 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 Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506845 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. Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506849 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 Link to comment https://forums.phpfreaks.com/topic/99023-getting-asp-to-talk-to-php/#findComment-506853 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.