Posts by Jonas Esteves • 46 points
3 posts
-
0
votes2
answers193
viewsA: Error in saving dates
I went through a problem very similar to yours. Searching a little I found the following solution, simple, that solved my problem. I needed to capture a completed date in a form in DD/MM/YYYY format…
-
1
votes2
answers1156
viewsA: Download FTP via PHP
Your question is not very clear, but let’s see if I can help you. The following code can be used to fetch a file from the FTP server. $server = "endereco_do_servidor.com.br"; $FTP_HOST =…
-
2
votes1
answer1607
viewsA: Read Remote File via FTP with PHP
To open an existing file on an FTP server, you would need to have it locally. Then you will use PHP to download the file from the server. $server = "endereco_do_servidor.com.br"; $FTP_HOST =…