tags:

views:

55

answers:

1

I realise that Sharepoint in asp .net based but I have a PHP application that a user wants me to include in a Sharepoint site.

So is it possible to use PHP code inside sharepoint?

+1  A: 

danit, when you say 'include' in the site, would it mean to be part of the site chrome (like inside the same menus etc) or just live connected with links would suffice?

I ask that because you can run php code under an IIS site but that would only keep the pages separated inside the same virtual host. if you need to actually join the functionalities you can:

  1. Fake it with an iFrame (Page Viewer Web Part pointing to the php site for example).
  2. you'll have to use some interop like webservices. It really comes down to what you want to do and not to if it is possible.
F.Aquino
+1 for the "fake it with an [i]Frame". This makes my head spin -- I thought my SP clients were "interesting enough".
pst