Sharepoint: access sharepoint files for SQL

I have a Sharepoint intranet server in the same new browser as the Internet PHP web server. I would like to know if through PHP SQL code I can access the list of collections of PDF files from the intranet so that it can be viewed on the website.

+1
php sharepoint moss wss sharepoint-2007
source share
1 answer

SharePoint provides Web Services List to access list items from a SharePoint library / document library. You should be able to use this to capture the URLs of documents and get them as an array of bytes or something else that you could use in your PHP application. I am not familiar with PHP, so I don’t know what kind of web service support is offered, but you can always do this on the client side with AJAX.

+2
source share

All Articles