I'm using system() function to send CMD commands from PHP. It is working fine with single line command, but I dont know how to pass additional command parameters from PHP.
For example: cd, time etc. are working fine. but ftp ftp.myserver.com command from CMD requires username name password to connect FTP from CMD. how can i pass username and password from PHP script to CMD? the page just keeps loading. may be it is waiting for username input. how can i do that?
How can i send username and password using system() or other similar functions from PHP?
I need to connect to FTP and execute CMD FTP commands from PHP.
