0
I wonder if there is a way to create , write a file txt
with in a folder located outside the PHP application, in another machine on the same network . The PHP server is under Ubuntu Linux and I have to save to another Windows server. Since PHP does not support SMB how can I do this?
fopen("C:\\xampp\\htdocs\\Enviamos\\file00001.txt",'w+'); local esta ok e em outro diretório em rede
fopen("\\192.168.10.4\\Enviamos\\file00001.txt",'w+')
See if it fits Using remote files
– Augusto Vasques