Drug and Alcohol Rehab Centers in South Carolina
Updated on April 24, 2019
In 2016, people in South Carolina filled more than 5 million opioid prescriptions, and with the increased use of other illicit drugs like methamphetamine and alcohol, more South Carolina residents and their loved ones are in need of effective treatment options. Fortunately, South Carolina offers a variety of high-quality treatment options for those in need.
South Carolina offers people suffering from addiction many tranquil, safe, and supportive rehabilitation options. Finding quality addiction treatment can be an overwhelming task, but we are here to help.
South Carolina Substance Abuse Statistics
The opioid epidemic has affected nearly every community in South Carolina, spreading across social classes, races, and all walks of life. Alcohol is also a major issue in South Carolina, especially for young people. Here are some statistics:
- 18% of high school students in South Carolina try alcohol before the age of 13.
- In 2017, 18.5% of adults admitted to binge drinking on one or more occasion within a 30 day period.
- In 2016, 550 deaths in South Carolina were related to prescription opioid overdose.
- First responders administered naloxone (an opioid overdose reversal medication) 397 times within a single zip code in 2016, and 6,400 total.
Introducing
virtual care
Get treatment when
and how you need it.
Choosing the Right Rehab Program in South Carolina
Early intervention and research into specific treatment programs are both vital to a successful recovery. Inpatient care programs are effective for people who require structure and close monitoring. When searching for the right program, keep the following factors in mind:
- Accreditation: Accreditation is a formal evaluation that shows a treatment center meets certain standards of care set by the Joint Commission, CARF, or other oversight organizations. In some cases, facilities may be licensed or certified by South Carolina.
- Evidence-based Approaches: Evidence-based approaches are clinically proven treatment methods for addiction. They have been studied, researched, and put to the test. One example is a therapy called motivational interviewing for stimulant addiction.
- Length/Location: Treatment length varies and is usually determined by an individual assessment. Inpatient programs may last between 28-90 days or longer. To find the best program, consider traveling out-of-state for the right fit.
- Aftercare and Alumni Services: Many rehab centers provide aftercare services, or a continuum of care, as part of their offered treatment program. This may include partnering with support groups, coordinating peer sponsorship, or outpatient counseling.
- Payment: Rehab programs are generally paid for with a combination of insurance and private pay. Be sure to check with the insurance provider to determine coverage, and then double-check the rehab center accepts that insurance.
South Carolina Drug and Alcohol Rehab Services
Some of the different types of drug and alcohol addiction treatment services found throughout South Carolina include:
- Drug and Alcohol Detox Programs: Detox programs provide safety and support as a person experiences uncomfortable symptoms of withdrawal. The goal of these programs is to help a person prepare for treatment.
- Behavioral Therapy: This focuses on recognizing triggers and developing positive coping skills. Common therapies include cognitive behavioral therapy and acceptance and commitment therapy.
- Medication-assisted Treatment (MAT): This advanced substance abuse treatment method works to combine behavioral therapy with FDA-approved medications to treat alcohol and opioid addictions.
- Treatment for Co-Occurring Disorders: Addiction often co-occurs with underlying mental health conditions like trauma or anxiety. This treatment is designed to treat both conditions at the same time with a multidisciplinary approach.
Finding Addiction Treatment in South Carolina
Never hesitate to reach out for help. Whether someone decides to ask friends and family or they begin their search online, it’s important to remember those with addiction are not alone. Individuals may want to consider traveling out-of-state for the best options as they begin their journey towards a better life.
//$startTime = microtime(true);
require_once 'inc/db.php';
require_once 'inc/lookups.php';
$requestLookup = $requestLookup ? $requestLookup : sanitize_text_field($_GET['lookup']);
$requestState = $requestState ? $requestState : sanitize_text_field($_GET['state']);
$requestCity = $requestCity ? $requestCity : sanitize_text_field($_GET['city']);
$requestLocation = $requestLocation? $requestLocation : sanitize_text_field($_GET['location']);
$dataOnly = $dataOnly ? $dataOnly : (bool) $_GET['dataonly'];
if ($requestLookup) {
if (array_key_exists($requestLookup, $lookupGroups)) {
$lookup = $requestLookup;
if (is_array($lookupGroups[$lookup])) {
$lookupGroup = $lookupGroups[$lookup];
}
$lookupName = $lookupTitles[$lookup];
}
if (!$lookup) {
$err['lookup'] = "Sorry, we couldn't find that category.";
}
}
if ($requestState && $lookup) {
$stateSlug = str_replace('-'.$requestLookup, '', $requestState);
$state = Model::factory('State')->where('url', $stateSlug)->find_one();
if (!$state) {
$err['state'] = "Sorry, we couldn't find that state.";
$is404 = true;
}
}
if ($requestCity && $state) {
$city = $state->city()->where('url', $requestCity)->find_one();
if (!$city) {
$err['city'] = "Sorry, we couldn't find that city.";
$is404 = true;
}
}
if ($requestLocation && $city ) {
/* Fetch Location Only under primary Lookup*/
if($lookup=='rehab-centers')
$location = $city->location()->where('url', $requestLocation)->find_one();
if (!$location) {
$err['location'] = "Sorry, we couldn't find that location.";
$is404 = true;
}
/* Special Header Addons - Locations Under Sub Lookups*/
if($lookup!='rehab-centers')
$sublookup_head = true;
}
/***
* Let's work backwards with what we have.
***/
// City Table Column Selector :: Num Locations by Lookup
switch($lookup){
case 'inpatient-rehab-centers' : $col = 'num_inpa'; break;
default : $col = 'num_locations';
}
if ($location) {
$attributes['S'] = $attributes['T'] = $attributes['D'] = $attributes['P'] = array();
foreach ($location->attribute()->find_many() as $attribute) {
$attributes[$attribute->type][] = $attribute;
}
$mapAddress = urlencode($location->location_street1 . ' ' . $location->location_street2 . ' ' . $city->name . ' ' . $state->abbr);
if ($dataOnly) {
// Reserved for location data-only
} else {
include_once 'templates/location.php';
}
}
else if ($city) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$locations = ORM::for_table('location')
->raw_query('SELECT location.*
FROM location JOIN attribute_location ON location.id = attribute_location.location_id
WHERE location.city_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY location.id', array($city->id))
->find_many();
}
elseif ($lookupGroup) {
$built_re_state = explode('-'.$requestLookup,$requestState)[0];
$build_redirect = '/rehab-centers/'.$built_re_state.'-rehab-centers/'.$requestCity.'/';
header("HTTP/1.1 301 Moved Permanently");
header('Location: https://www.rehabcenter.net' . $build_redirect);
exit();
// Standard lookups
//$locations = ORM::for_table('location')->where('location.city_id', $city->id)->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('location.id')->find_many();
}
else {
// Show all rehab centers
$locations = $city->location()->find_many();
}
/* Show City Page Only if # Segments exist*/
if(count($segments)==3&&!$is404){
if ($dataOnly) {
// Reserved for city data-only
include_once 'templates/city-data.php';
} else {
include_once 'templates/city.php';
}
}
}elseif ($state) {
if ($lookup == 'inpatient-rehab-centers') {
// Special case; exclude outpatient rehabs from inpatient list
$cities = ORM::for_table('city')
->raw_query('SELECT city.*
FROM city
JOIN location ON city.id = location.city_id
JOIN attribute_location ON location.id = attribute_location.location_id
WHERE city.state_id = ?
AND attribute_location.attribute_id IN (25,26,27)
AND location.id NOT IN (
SELECT location_id
FROM attribute_location
WHERE attribute_id = 23
)
GROUP BY city.id', array($state->id))
->find_many();
}
else if ($lookupGroup) {
$cities = ORM::for_table('city')->select('city.*')->where('city.state_id', $state->id)->join('location', array('city.id', '=', 'location.city_id'))->join('attribute_location', array('location.id', '=', 'attribute_location.location_id'))->where_in('attribute_location.attribute_id', $lookupGroup)->group_by('city.id')->find_many();
}
else {
$cities = $state->city()->find_many();
}
// Let's make sure we only have # segments on the URL array(3)
if(count($segments)==2){
if ($dataOnly) {
include_once 'templates/state-data.php';
} else {
include_once 'templates/state.php';
}
}
}
else if ($lookup&&!$is404) {
$states = Model::factory('State')->find_many();
if ($dataOnly&&!$is404) {
include_once 'templates/lookup-data.php';
} else {
include_once 'templates/lookup.php';
}
}
else {
$is404 = true;
header('HTTP/1.0 404 Not Found');
}
// $endTime = microtime(true);
//echo '';
?>
Article Sources
South Carolina Dept. of Health and Environmental Control - Opioids and Heroin Use Stats
United Health Foundation - Excessive Drinking in South Carolina in 2017
U.S. Dept. of Health and Human Services - South Carolina Adolescent Substance Abuse Facts