Hi!
How can I use a program in pipe with some information that comes from a php code? Example...
#a_program_that_requires_a_password
Your password:
Re-type password:
Well, how can I send the password from a php script to the user-input? I think of something like
open (FD, "|$cmd");
print FD "$password\n";
from perl but how can I implement someting like this in php?
Thanks, George.