$logfile needs to be declared "global" inside function GoCount() ;
function GoCount() {
global $logfile;
...
}
Variables inside functions are assumed to be local unless otherwise specified as global. You'll probably need to make $url global also unless you pass $url as an argument like GoCount( $url ).
hth
stew