handicapping
Handicap Lookup - Mockup
Get a Handicap Index
<?php
global $user;
$link="/membership/join-the-mga";
if ($user->uid==1) {
print "Admin doesn't redirect automatically.: <a href=$link>$link</a>";
} else {
drupal_goto($link);
}
?>
The Truth About Slope
When the USGA instituted Slope a few years back, many golfers probably thought the USGA was switching to downhill skiing. In truth, the introduction of this new dimension to the USGA Handicap System has enabled players to receive more strokes on a difficult course and fewer strokes on an easier course. Now Uncle Snoopy and Woodstock can enjoy a fair game no matter what course they decide to play.
Course Rating Finder
<?php
global $user;
$link="http://ncrdb.usga.org/NCRDB/";
if ($user->uid==1) {
print "Admin doesn't redirect automatically.: <a href=$link>$link</a>";
} else {
drupal_goto($link);
}
?>