Onion - your assumption is correct, I do code for free. I am not a professional developer but have a couple of my own sites I made myself.
As for getting what you pay for, let's take a look at CF vs PHP...
Your PHP Code:
$base = "C:/apache2/htdocs/personalsite3/version1/";
function getroot($currentpath) {
$levels = substr_count($currentpath, "/");
$rootpath = "./";
for($i = 0; $i < $levels; $i++) {
$rootpath .= "../";
}
return $rootpath;
}
echo getroot(str_replace($base,"",$_SERVER['PATH_TRANSLATED']));
my CF Code:
/
Hmmmmmm, I think CF might be on to something. Are you just angry that CF technology allows non-developers like me to do what you do only easier?