El Paso, Texas Substance Use Statistics And Treatment Options
Updated on June 3, 2020 | Published on September 30, 2019
In 2019, law enforcement officials confiscated more than 3,700 fentanyl pills and 35 grams of the synthetic opioid in its powdered form. Although fentanyl is deadly, there is help and hope for those struggling with addiction.
Substance Use Statistics In El Paso And El Paso County, Texas
While opioids like fentanyl have traditionally ravaged other areas of the country first before moving into Texas, El Paso and El Paso County have seen their devastating efforts far too often. Take a look at some local facts:
- In 2017, five people died as the result of an overdose of fentanyl.
- From January through October 2019, 16 residents died of a fentanyl-related overdose..
- Fentanyl is not the only opioid causing issues, with heroin claiming 48 lives in 2018.
- Meth was the cause of 57 deaths in 2018.
- In 2018, a total of 130 people died as a result of a drug overdose.
Introducing
virtual care
Get treatment when
and how you need it.
Addiction Treatment Options In El Paso, Texas
The standard of care for anyone facing a substance use disorder is an individualized treatment plan. This plan often includes detox, residential treatment, outpatient options, and aftercare.
Drug And Alcohol Detox Programs
A drug and alcohol detox program is an important first step in any recovery. Opting for a program that is medically supervised provides you with the assistance of professionals.
As you detox and experience withdrawal, professionals can address any potential medical issues that might arise while also making you as comfortable as possible during the process.
Inpatient Addiction Treatment
For most people, inpatient addiction treatment is the best option for addressing and recovering from substance use disorder.
By living on-site, you’ll be able to access care 24 hours a day, seven days a week. With a tailored treatment plan, combined with options for addressing your physical, emotional, and spiritual health, you’ll have a well-rounded, holistic experience.
Outpatient Drug Rehab
Once you’ve completed an inpatient treatment program, you’ll probably be encouraged to attend outpatient drug rehab.
This type of program can help you transition back into mainstream life while also providing you with the support and resources you need to continue your recovery successfully.
Medication-Assisted Treatment
MAT stands for medication-assisted treatment. It’s an evidence-based method of addressing the physical and emotional effects of opioid and alcohol addiction.
MAT uses a combination of behavioral therapy and medications approved by the FDA to help you transition from alcohol or opioid use. It also assists you in examining other options for coping with life’s issues without turning to addictive substances.
Aftercare Planning And Services
Because recovering from addiction is lifelong, aftercare planning is an important step. Reputable addiction treatment centers provide aftercare services to their alumni or put them in contact with options.
These options span a diverse range but can include sober-living housing, 12-step programs, peer recovery services, and more.
How To Pay For Alcohol Or Drug Rehab
Being able to pay for alcohol or drug rehab should not be a reason to seek out care that can save your life. Nearly all health insurance plans available today offer some form of coverage for this type of treatment. You are also able to pay for your treatment out-of-pocket.
In order to be as informed as possible, and to make the best decisions for yourself, consult with your health insurance company regarding their coverage options. You can also talk to the treatment center itself about the choice available to you.
Virtual Care Is Available With Regard Healthcare
With virtual care administered by Regard Healthcare, you’ll have access to proven therapy solutions you can access from the convenience of your own home.
Addressing substance use, co-occurring mental health conditions, and related concerns is as simple as connecting with the professionals at Regard Healthcare.
Regard Healthcare Texas
Regard Healthcare Texas is located in Scurry, Texas about 40 minutes outside of Dallas. While it’s a nine-hour drive from El Paso, there are non-stop and connecting flights from El Paso International Airport that can get you to Dallas in a little as two hours or less.
Once you arrive at Regard Healthcare Texas, you’ll be immersed in a soothing, caring environment that is focused on providing you with the individualized care, support, and attention you need to recover from substance use disorder. To learn more about our facility, please connect with us today.
//$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