Is there a way to access to the url where the svn is installed to get the revision number from an external php:
<?php
$url="the url where the svn is installed";
$Revisionsvn=(some command to get the revision number through the url);
echo($Revisionsvn);
?>
I have tried
<?php
$url = 'your repository here';
$output = `svn info $url`;
echo "<pre>$output</pre>";
?>