Accessing the windows server folder by PHP on Linux

2

We have an intranet developed in PHP that is inside a Linux server with apache. I need to access a folder that is on another server and that server is Windows. Is there any way to do this?

    
asked by anonymous 14.07.2015 / 13:41

1 answer

0

Hello, you can configure an ftp connection to this server with PHP, or even sftp.

Follow the domanual PHP links to make these connections:

SFTP: link

FTP: link

    
14.07.2015 / 15:04