Answers
Oct 14, 2009 - 12:23 PM
For example, on a windows machine with IIS as the webserver and PHP installed for IIS you could have both .asp and .php files exist on the same or different folders. You can link to each other as you can link to any webpage on the internet.
Since each click on a link is a different server request, IIS should have no problem starting php or the .net framework to serve that request.
You could even exchange data between pages, using POST and GET variables, but you would be unable to exploit specific features of either language, such as session handling, etc. You could write your own version of these features though, although that would be a very tedious task.
Now, if you are looking to embed asp code into php files, or vice versa, you could have a look on a project called Phalanger, http://www.php-compiler.net/doku.php which enables you to do just that.
I'm afraid your options are limited on the choice of operating system and web server. I'm sure that on linux/apache there is nothing you can do. I'm not sure about windows/apache but I wouldn't bet on it.
Nov 27, 2009 - 05:13 AM
The Quomon Team
Add New Comment