I'm using PHP to make a system call to the "man" program (a manual program) and then display it on the webpage.
This is how I'm using it:
echo system("man -M /usr/share/man:/usr/local/man $f_man",
where $f_man is a variable from a form I pass it. system calls to ph and finger work just fine, but "man" and "finger" (another system call I make) do not. Does anyone have any answers to make the fix?
😀
This is how I'm using it:
echo system("man -M /usr/share/man:/usr/local/man $f_man",
where $f_man is a variable from a form I pass it. system calls to ph and finger work just fine, but "man" and "finger" (another system call I make) do not. Does anyone have any answers to make the fix?
😀