/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
Print Page - Glossary of Acronyms
Paleo Diet: Raw Paleo Diet and Lifestyle Forum
Raw Paleo Diet Forums => Suggestion Box => Topic started by: majormark on December 11, 2009, 07:34:11 pm
-
How about we index some of the acronyms commonly used in the forum and maybe make a sticky somewhere.
For example:
RAF - Raw Animal Food
HG - Hunter-Gatherer
SAD - Standard American Diet
LC - Low Carbohydrate
etc.
Feel free to add more here.
-
VLCKD - very-low-carbohydrate ketogenic diet
AV - Aajonus Vonderplanitz
-
SMD=Standard Modern Diet
RPD = Raw Palaeolithic Diet
RVAF diet= Raw Animal and Vegetable Diet.
HC= High carb.
AGEs= Advanced Glycation End-Products.
ALEs= Advanced Lipoxidation End-Products.
PAHs= Polycyclic Aromatic Hydrocarbons.
NSAs= Nitrosamines.
HCAs= Heterocyclic Amines.
AV= Aajonus Vonderplanitz.
PD= Primal Diet.
GCB= Guy-Claude Burger.
WAPF= Weston.A Price Foundation.
SF= Sally Fallon.
LC=Loren Cordain
WP=Weston-Price.