State / Organization Approvals
United States
query("SELECT * FROM state_list_licensing WHERE abbrev != 'PR' AND country = 'USA'") or die("Unable to get state list!");
$state_counter = 0;
$state_divider = false;
while ($stateRow = $stateResult->fetch_assoc()) {
if ($stateRow['country'] == "CAN") {
$url_prefix = "-canada";
} else {
$url_prefix = "";
} ?>
- -massage-ceu-resources.html">
floor($stateResult->num_rows / 2) && !$state_divider) {
$state_divider = true;
?>
Canada
query("SELECT * FROM state_list_licensing WHERE country = 'CAN'") or die("Unable to get state list!");
while ($stateRow = $stateResult->fetch_assoc()) {
if ($stateRow['country'] == "CAN") {
echo " - ".$stateRow['name']."
\n";
} else {
echo " - ".$stateRow['name']."
\n";
}
}
?>
Organizations
ALL of our courses are accepted for CE credit by:
query("SELECT * FROM state_list_licensing WHERE country IS NULL") or die("Unable to get state list!");
while ($stateRow = $stateResult->fetch_assoc()) {
if ($stateRow['country'] == "CAN") {
echo " - ".$stateRow['name']."
\n";
} else {
echo " - ".$stateRow['name']."
\n";
}
}
?>