I need to create a web app for a school project and need to use SVN. I have a path in a PHP variable and iam using command line svn. So i need to pass that variable into batch file command. So how can I store the value of PHP variable into the batch variable. please help.
My code
<?PHP
$vname="\project";
$svnpath="d:\a\svn";
$serverpath=$svnpath.$vname;
mkdir $serverpath;
exec("svnadmin create <server path value>");
?>