So after our codebase had become unmanageable, we finally decided to set up subversion for a web project I work on with a few friends. We've successfully set up a trunk and branches for each developer. We're working with PHP. What I'm wondering is, is if there's any way to actually view a PHP file's output from within Subversion so that when one of the other developers checks in a change, I can browse to his branch in my browser and then see what the site would look like and test his changes before merging with the trunk? Right now, if I browse to another developer's branch, all I see is the PHP source code in the browser window.
Is this possible without checking out/exporting every time? Are we going about this the wrong way? Any insight is greatly appreciated. Thanks in advance!