I have a webpage that needs to be able to read a file for parsing and display content in a table. my html calls ajax calls my php, my php reads the file and parses and sends back the content for the table. I have tested this with the file on my local machine, but I need to be able to read the file when it is in svn. can someone point me in the right direction,
function rFile($fName)
{
$url = "svnURL"; //my svn url
$endName = $url.$fName.".sql";
//echo "$endName";
if (file_exists($endName))
{
//code for parsing
}
else
{
echo " no file";
}
}
this is what I am currently trying... and I always get "no file" so I know that this isnt right plus i think that I need to add credentials some how.
I am grateful for any help and thanks in advance.
exec("svn cat $url")– mario Mar 23 '11 at 15:54