I need some help with executing cvs commands from within php scripts.
My requirement is to provide web based cvs checkout or update.
I used backtick, system() commands to do this but they do not seem
to work whereas the commands before cvs command and/or after cvs
commands work fine.
My code looks like this:
$var = pwd;cvs update script.php;pwd;
print "$var<br>\n";
The resulting web page shows both pwd commands output but the
cvs command does not work.
What is wrong with cvs commands or Am I missing some thing there?
Thanks in advance,
Venu