This is a discussion on calling CVS in PHP within the PHP Language forums, part of the PHP Programming Forums category; Howdy does have any PHP fuctions that allow me to run CVS? Here's what I've tried so far: &...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Howdy does have any PHP fuctions that allow me to run CVS?
Here's what I've tried so far: <?php system('cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/izicontents login; cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/izicontents co -P iziContents1 .'); TIA, David |
|
|||
|
lists@lastisfirst.org wrote:
> Howdy does have any PHP fuctions that allow me to run CVS? > Here's what I've tried so far: > > <?php > system('cvs > -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/izicontents login; > cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/izicontents > co -P iziContents1 .'); > > See http://www.php.net/proc_open (example 2). JW |