include() and other filesystem-related function need filesystem pathnames, not HTTP-style pathnames. Therefore, "/facts/hemp.php" is pointing to a file in a directory called "facts" directly beneath the root directory on the server. What you probably really want is something like:
case "hemp": include $_SERVER['DOCUMENT_ROOT']."/facts/hemp.php"; break;